Skip to content

Commit

Permalink
Update to official .net9 SDK, bump version to 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
amerkoleci committed Nov 13, 2024
1 parent f712049 commit b6e13cb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET 9 SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: ./global.json
Expand Down
8 changes: 4 additions & 4 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "9.0.100-preview",
"allowPrerelease": true,
"rollForward": "latestFeature"
"version": "9.0.100",
"rollForward": "latestFeature",
"allowPrerelease": false
}
}
}
6 changes: 3 additions & 3 deletions src/Vortice.Mathematics/Vortice.Mathematics.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) or '$(Packing)' == 'true'">$(TargetFrameworks);net9.0-windows10.0.19041;net8.0-windows10.0.19041;</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) or '$(Packing)' == 'true'">$(TargetFrameworks);net8.0-windows10.0.19041;net9.0-windows10.0.19041</TargetFrameworks>
<Description>High performance cross platform .NET math library</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!-- Version -->
<PropertyGroup>
<VersionPrefix>1.9.2</VersionPrefix>
<VersionPrefix>1.9.3</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
</PropertyGroup>

Expand Down

0 comments on commit b6e13cb

Please sign in to comment.