diff --git a/.gitignore b/.gitignore index 67f816b..c41b359 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,6 @@ jspm_packages # Webpack cache .temp_cache + +obj/ +bin/ diff --git a/App_Data/app.xml b/App_Data/app.xml index 30c49ca..edde5d3 100644 --- a/App_Data/app.xml +++ b/App_Data/app.xml @@ -1,5 +1,5 @@ - +
@@ -620,6 +620,9 @@ + + + @@ -647,7 +650,7 @@ - + diff --git a/README.md b/README.md index de9f754..b51de09 100644 --- a/README.md +++ b/README.md @@ -49,4 +49,6 @@ If you want to customize the CSS, you will usually follow the ["Create Custom St * Replaced turnOn Tag with `Kit.Page.TurnOn` * v02.04.00 2023-07 * 2sxc 16.02 coding conventions - * everything typed \ No newline at end of file + * everything typed +* v02.04.01 2024-07 + * Add app.sln and app.csproj \ No newline at end of file diff --git a/Timeline.PartAssets.cshtml b/Timeline.PartAssets.cshtml index cf76265..62cc090 100644 --- a/Timeline.PartAssets.cshtml +++ b/Timeline.PartAssets.cshtml @@ -5,7 +5,7 @@ @Kit.Page.Activate(condition: Kit.Css.IsUnknown, features: "Bootstrap5") // Activate font-Awesome 5 - Kit.Page.Activate("FontAwesome5"); + Kit.Page.Activate("FontAwesome5", "2sxc.JsCore"); var data = new { domAttribute = MyModel.String("timelineJsAttribute"), diff --git a/app.csproj b/app.csproj new file mode 100644 index 0000000..9c3f9a3 --- /dev/null +++ b/app.csproj @@ -0,0 +1,74 @@ + + + + + + + AppCode + + + + + true + true + true + true + + + + + + net472 + 8.0 + ..\..\..\..\bin + + + + + + net8.0 + latest + + + ..\..\.. + + + ..\..\..\bin\Debug\net8.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app.sln b/app.sln new file mode 100644 index 0000000..110ad34 --- /dev/null +++ b/app.sln @@ -0,0 +1,26 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App", "app.csproj", "{9F7A078F-99D5-4EF4-8EC0-C6B920FE679C}" +EndProject + +# +# Visual Studio .sln File for 2sxc App +# This is necessary so that VS Code can perform intellisense in Razor +# It also requires a csproj file to exist as well +# +# Read more and get help for issues on https://go.2sxc.org/vscode +# + +# Addition 2024-05 +# The following section is suddenly required by the C# DevKit +# See https://github.com/microsoft/vscode-dotnettools/issues/1151 +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal