Skip to content

Commit b6e13cb

Browse files
committed
Update to official .net9 SDK, bump version to 1.9.3
1 parent f712049 commit b6e13cb

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v4
2222

23-
- name: Setup .NET 9 SDK
23+
- name: Setup .NET SDK
2424
uses: actions/setup-dotnet@v4
2525
with:
2626
global-json-file: ./global.json

global.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.100-preview",
4-
"allowPrerelease": true,
5-
"rollForward": "latestFeature"
3+
"version": "9.0.100",
4+
"rollForward": "latestFeature",
5+
"allowPrerelease": false
66
}
7-
}
7+
}

src/Vortice.Mathematics/Vortice.Mathematics.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

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

1111
<!-- Version -->
1212
<PropertyGroup>
13-
<VersionPrefix>1.9.2</VersionPrefix>
13+
<VersionPrefix>1.9.3</VersionPrefix>
1414
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
1515
</PropertyGroup>
1616

0 commit comments

Comments
 (0)