Skip to content

Commit

Permalink
Attempt to upgrade to .NET SDK 8
Browse files Browse the repository at this point in the history
I previously attempted this upgrade but it broke the build on AppVeyor. Let's see if it'll work this time.
  • Loading branch information
Jericho committed Nov 21, 2023
1 parent c3ee1fe commit 8dd6719
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>ZoomNet.IntegrationTests</AssemblyName>
<RootNamespace>ZoomNet.IntegrationTests</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/ZoomNet.UnitTests/ZoomNet.UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>
<AssemblyName>ZoomNet.UnitTests</AssemblyName>
<RootNamespace>ZoomNet.UnitTests</RootNamespace>
<IsPackable>false</IsPackable>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.404",
"version": "8.0.100",
"rollForward": "patch",
"allowPrerelease": false
}
Expand Down

0 comments on commit 8dd6719

Please sign in to comment.