Skip to content

Commit

Permalink
Update app.sln and app.csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Graf committed Jul 25, 2024
1 parent fe784e7 commit bdd67e2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
4 changes: 2 additions & 2 deletions App_Data/app.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<SexyContent FileVersion="07.00.00" MinimumRequiredVersion="07.04.02" ModuleVersion="17.07.00" ExportDate="2024-05-02T11:02:15.6877343+02:00">
<SexyContent FileVersion="07.00.00" MinimumRequiredVersion="07.04.02" ModuleVersion="18.00.00" ExportDate="2024-07-25T10:19:36.9977471+02:00">
<Header>
<App Guid="8c3d9f27-4c23-4ac7-a9ea-c7d1551c5ba7" />
<Language Default="en-us" />
Expand Down Expand Up @@ -2377,7 +2377,7 @@
<Value Key="SupportsAjaxReload" Value="True" Type="Boolean">
<Dimension DimensionID="159" ReadOnly="false" />
</Value>
<Value Key="Version" Value="02.17.00" Type="String">
<Value Key="Version" Value="02.17.01" Type="String">
<Dimension DimensionID="159" ReadOnly="false" />
</Value>
</Entity>
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ If you want to customize the CSS, you will usually follow the ["Create Custom St
* strong typed
* Auto Generated Class
* Typed MyItem
* v02.17.01 2024-07
* Update app.sln and app.csproj
11 changes: 9 additions & 2 deletions app.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<!-- This file helps VS Code provide IntelliSense - see https://go.2sxc.org/vscode -->
<!-- Template v2024-06-19. If you have issues, try getting a newer copy from the url above -->

<!-- Specify the default Namespace for C# code in this specific App -->
<PropertyGroup>
Expand Down Expand Up @@ -39,6 +40,11 @@
<!-- IntelliSense: Load all DLLs which exist in Dnn and Oqtane from the bin folder -->
<ItemGroup>
<Reference Include="$(PathBin)\ToSic.*.dll" />
<Reference Include="$(PathBin)\Connect.Koi.dll" />

<!-- Common Microsoft DLLs -->
<Reference Include="$(PathBin)\System.Text.Json.dll" />

<!-- Also load files in the Dependencies folder of the current App -->
<Reference Include="Dependencies\*.dll" />
</ItemGroup>
Expand All @@ -53,15 +59,16 @@

<!-- System.Web is not in the DNN folder but in the .net Framework installed on the server -->
<Reference Include="System.Web" />
<Reference Include="System.Net.Http" />
</ItemGroup>

<!-- Polymorphism - if have files with the same classes confuse IntelliSense - see https://go.2sxc.org/vscode -->
<!-- Example: exclude /live as we're always working on /staging -->
<ItemGroup>
<!-- <ItemGroup>
<None Remove="live\**" />
<Content Remove="live\**" />
<Compile Remove="live\**" />
<EmbeddedResource Remove="live\**" />
</ItemGroup>
</ItemGroup> -->

</Project>
15 changes: 14 additions & 1 deletion app.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,18 @@ EndProject
# This is necessary so that VS Code can perform intellisense in Razor
# It also requires a csproj file to exist as well
#
# Read more on https://go.2sxc.org/vscode
# 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

0 comments on commit bdd67e2

Please sign in to comment.