Skip to content

Commit

Permalink
Merge pull request #1 from NetCoreTemplates/sync-gh-actions
Browse files Browse the repository at this point in the history
Update .csproj files to net8.0 and adjust versions
  • Loading branch information
Layoric authored Nov 22, 2023
2 parents 8a47c60 + 7328056 commit 19ebe3c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions MyApp/MyApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PublishProfile>DefaultContainer</PublishProfile>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
Expand All @@ -23,11 +24,11 @@

<ItemGroup>
<PackageReference Include="Markdig" Version="0.30.*" />
<PackageReference Include="ServiceStack" Version="6.*" />
<PackageReference Include="ServiceStack.Mvc" Version="6.*" />
<PackageReference Include="ServiceStack" Version="8.*" />
<PackageReference Include="ServiceStack.Mvc" Version="8.*" />

<!-- Required for Razor compilation on change: https://docs.microsoft.com/en-us/aspnet/core/mvc/views/view-compilation?view=aspnetcore-5.0 -->
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.*" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.*" />
</ItemGroup>

</Project>

0 comments on commit 19ebe3c

Please sign in to comment.