Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
- name: 'Install dotnet'
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
10.x
global-json-file: global.json

- name: 'Restore packages'
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- name: 'Install dotnet'
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
10.x
global-json-file: global.json

- name: 'Restore packages'
Expand All @@ -38,7 +41,7 @@ jobs:
run: dotnet build --no-restore --configuration Release

- name: Test
run: dotnet test --logger "trx;LogFileName=test-results.trx" --no-restore || true
run: dotnet test --logger "trx;LogFileName=test-results.trx" --no-restore

- name: Test Report
uses: dorny/test-reporter@v1
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.0;netstandard2.1;</TargetFrameworks>
<TargetFrameworks>net10.0;net8.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<LangVersion>12</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1591;xUnit1051</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
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": "8.0.416",
"version": "10.0.100",
"rollForward": "latestFeature"
}
}