Skip to content

Commit ae84899

Browse files
committed
reverse to .net 9
1 parent 5a473bb commit ae84899

7 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/cd.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- name: Install WASM experimental workload
19-
run: dotnet workload install wasm-experimental
18+
2019
- uses: actions/checkout@v4.2.2
2120
with:
2221
fetch-depth: 0
2322
- name: Setup .NET
2423
uses: actions/setup-dotnet@v4
2524
with:
2625
dotnet-version: 9.0.x
26+
# allow-prerelease: true
27+
- name: Install WASM experimental workload
28+
run: dotnet workload install wasm-experimental wasm-tools
2729
- name: Install GitVersioning
2830
run: dotnet tool install --global nbgv
2931
- name: Set version

Abies.Benchmarks/Abies.Benchmarks.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
45
<OutputType>Exe</OutputType>
56
</PropertyGroup>
67

Abies.Conduit/Abies.Conduit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
44
<PublishTrimmed>false</PublishTrimmed>
5-
5+
<TargetFramework>net9.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<ProjectReference Include="..\Abies\Abies.csproj" />

Abies.Counter/Abies.Counter.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
22
<PropertyGroup>
3+
<TargetFramework>net9.0</TargetFramework>
34
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
45
<PublishTrimmed>false</PublishTrimmed>
56

Abies.Tests/Abies.Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
45
<IsPackable>false</IsPackable>
56
</PropertyGroup>
67

Abies/Abies.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
45
<!-- needed to support JS interop -->
56
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
67
</PropertyGroup>

Directory.Build.Props

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
4-
5-
<!-- Example: Set the C# language version to 9.0 for all projects -->
3+
<!-- Example: Set the C# language version to 9.latest for all projects -->
64
<LangVersion>latest</LangVersion>
75
<ImplicitUsings>enable</ImplicitUsings>
86
<!-- Example: Enable nullable reference types for all projects -->

0 commit comments

Comments
 (0)