Skip to content

Commit

Permalink
net 6
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Jan 24, 2025
1 parent a6e2d71 commit e72a834
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_n_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
dotnet-version: [ '5.0.x' ]
dotnet-version: [ '6.0.x' ]

steps:
- name: Checkout
Expand All @@ -36,6 +36,6 @@ jobs:
- name: Build and test
run: dotnet restore
- name: build
run: dotnet build --configuration Release --no-restore --framework net5.0
run: dotnet build --configuration Release --no-restore
- name: test
run: dotnet test --configuration Release --no-build --verbosity normal --framework net5.0
run: dotnet test --configuration Release --no-build --verbosity normal
2 changes: 1 addition & 1 deletion src/ACadSharp.Examples/ACadSharp.Examples.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/ACadSharp.Tests/ACadSharp.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;net48</TargetFrameworks>
<TargetFrameworks>net6.0;net48</TargetFrameworks>

<!-- Enable the MSTest runner, this is an opt-in feature -->
<EnableMSTestRunner>true</EnableMSTestRunner>
Expand Down

0 comments on commit e72a834

Please sign in to comment.