Skip to content

Commit

Permalink
Upgrade to dotnet 8
Browse files Browse the repository at this point in the history
  • Loading branch information
AffectedArc07 committed Apr 27, 2024
1 parent 7002bb9 commit 0cd7e8a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/SS13WebMap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:
AZURE_WEBAPP_NAME: SS13WebMap
AZURE_WEBAPP_PACKAGE_PATH: SS13WebMap/published
CONFIGURATION: Release
DOTNET_CORE_VERSION: 6.0.x
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: SS13WebMap
jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions SS13WebMap.sln
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SS13WebMap", "SS13WebMap\SS13WebMap.csproj", "{3156470D-F4E8-4C7C-9D8E-E15A7B6E2967}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SS13WebMap", "SS13WebMap\SS13WebMap.csproj", "{3156470D-F4E8-4C7C-9D8E-E15A7B6E2967}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{669CBC21-A19C-41C9-B9ED-32F8C9603AFD}"
ProjectSection(SolutionItems) = preProject
Expand Down
14 changes: 5 additions & 9 deletions SS13WebMap/SS13WebMap.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.27" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
<Folder Include="wwwroot\lib\leaflet\" />
</ItemGroup>

<ItemGroup>
<Folder Include="wwwroot\lib\leaflet\" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.4" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.2" />
</ItemGroup>

</Project>
</Project>

0 comments on commit 0cd7e8a

Please sign in to comment.