Skip to content

Commit

Permalink
Upgrade test project
Browse files Browse the repository at this point in the history
Moving from `.NET Core 3.1` to `.NET 8`
  • Loading branch information
pyrocumulus committed Jan 25, 2024
1 parent 0e06a0d commit 31305a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: .NET Core
name: .NET build

on:
push:
Expand All @@ -14,10 +14,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 3.1.100
dotnet-version: 8.x
dotnet-quality: 'ga'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
Expand Down
4 changes: 2 additions & 2 deletions tests/PVOutput.Net.Tests/PVOutput.Net.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\artifacts\</OutputPath>
Expand All @@ -11,7 +11,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="NUnit" Version="4.0.0" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit.Analyzers" Version="3.10.0" />
<PackageReference Include="RichardSzalay.MockHttp" Version="7.0.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
Expand Down

0 comments on commit 31305a7

Please sign in to comment.