Skip to content

Commit

Permalink
⬆️ Upgrade to .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Hona committed Oct 22, 2023
1 parent 2fceede commit a71a959
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
3 changes: 2 additions & 1 deletion VerticalSliceArchitecture.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
<metadata>

<id>Hona.VerticalSliceArchitecture.Template</id>
<version>0.1.4</version>
<version>0.2.0</version>
<title>Vertical Slice Architecture Template</title>
<authors>Hona</authors>
<description>Vertical Slice Architecture template using ASP.NET Core</description>
<summary>
This template is a way to get up and running using VSA in ASP.NET Core and C#. It is using Fast Endpoints as well as EF Core.
</summary>
<releaseNotes>
Upgraded to .NET 8
</releaseNotes>

<projectUrl>https://github.com/Hona/VerticalSliceArchitecture</projectUrl>
Expand Down
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "7.0.200",
"rollForward": "latestFeature",
"allowPrerelease": false
"version": "8.0.100",
"rollForward": "latestMinor",
"allowPrerelease": true
}
}
10 changes: 5 additions & 5 deletions src/VerticalSliceArchitecture/VerticalSliceArchitecture.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

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

<ItemGroup>
<PackageReference Include="FastEndpoints" Version="5.17.1.1" />
<PackageReference Include="FastEndpoints.Swagger" Version="5.17.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.10" />
<PackageReference Include="FastEndpoints" Version="5.18.0.6-beta" />
<PackageReference Include="FastEndpoints.Swagger" Version="5.18.0.6-beta" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0-rc.2.23480.1" />
</ItemGroup>


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

Expand All @@ -10,16 +10,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FastEndpoints.Testing" Version="5.17.1.1" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
<PackageReference Include="FastEndpoints.Testing" Version="5.18.0.6-beta" />
<PackageReference Include="FluentAssertions" Version="7.0.0-alpha.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23503-02" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="xunit" Version="2.4.2"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit a71a959

Please sign in to comment.