Skip to content

Commit 3945c7b

Browse files
committed
Update for .net 9
1 parent 0e1a0a1 commit 3945c7b

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup Dotnet
4444
uses: actions/setup-dotnet@v4
4545
with:
46-
dotnet-version: 8.x
46+
dotnet-version: 9.x
4747
source-url: https://nuget.pkg.github.com/ResoniteModdingGroup/index.json
4848

4949
- name: Add MonkeyLoader NuGet Source
@@ -98,7 +98,7 @@ jobs:
9898
- name: Setup Dotnet
9999
uses: actions/setup-dotnet@v4
100100
with:
101-
dotnet-version: 8.x
101+
dotnet-version: 9.x
102102
source-url: https://nuget.pkg.github.com/ResoniteModdingGroup/index.json
103103

104104
- name: Add MonkeyLoader NuGet Source

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Setup Dotnet
6969
uses: actions/setup-dotnet@v4
7070
with:
71-
dotnet-version: 8.x
71+
dotnet-version: 9.x
7272
source-url: https://nuget.pkg.github.com/ResoniteModdingGroup/index.json
7373

7474
- name: Add MonkeyLoader NuGet Source

ComponentSelectorAdditions/ComponentSelectorAdditions.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
43
<AssemblyTitle>ComponentSelectorAdditions</AssemblyTitle>
54
<AssemblyFileName>$(AssemblyTitle).dll</AssemblyFileName>
65
<RootNamespace>ComponentSelectorAdditions</RootNamespace>
@@ -16,6 +15,7 @@
1615
<PackageReadmeFile>README.md</PackageReadmeFile>
1716
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
1817
<PackageProjectUrl>https://github.com/ResoniteModdingGroup/ComponentSelectorAdditions</PackageProjectUrl>
18+
<RepositoryUrl>$(PackageProjectUrl).git</RepositoryUrl>
1919
<PackageTags>mod; mods; monkeyloader; resonite; component; attacher; selector; protoflux; node; picker; search; favorites</PackageTags>
2020
</PropertyGroup>
2121

@@ -30,18 +30,18 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="MicroUtils.HarmonyAnalyzers" Version="1.4.0">
33+
<PackageReference Include="MicroUtils.HarmonyAnalyzers" Version="1.6.1">
3434
<PrivateAssets>all</PrivateAssets>
3535
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3636
</PackageReference>
37-
<PackageReference Include="MonkeyLoader.GamePacks.Resonite" Version="0.22.1-beta" />
37+
<PackageReference Include="MonkeyLoader.GamePacks.Resonite" Version="0.24.1-beta" />
3838
<PackageReference Include="PolySharp" Version="1.15.0">
3939
<PrivateAssets>all</PrivateAssets>
4040
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4141
</PackageReference>
4242
<PackageReference Include="Resonite.Elements.Assets" Version="1.3.3" />
43-
<PackageReference Include="Resonite.Elements.Core" Version="1.4.3" />
43+
<PackageReference Include="Resonite.Elements.Core" Version="1.4.9.4" />
4444
<PackageReference Include="Resonite.Elements.Quantity" Version="1.2.3" />
45-
<PackageReference Include="Resonite.FrooxEngine" Version="2025.3.21.23" />
45+
<PackageReference Include="Resonite.FrooxEngine" Version="2025.8.25.222" />
4646
</ItemGroup>
4747
</Project>

Directory.Build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<OutputType>Library</OutputType>
4-
<TargetFramework>net462</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyFileName>$(AssemblyTitle).dll</AssemblyFileName>
66
<LangVersion>11.0</LangVersion>
77
<Nullable>enable</Nullable>
@@ -20,7 +20,6 @@
2020

2121
<PropertyGroup>
2222
<PackageReadmeFile>README.md</PackageReadmeFile>
23-
<RepositoryUrl>$(PackageProjectUrl).git</RepositoryUrl>
2423
<RepositoryType>git</RepositoryType>
2524
<IncludeSymbols>False</IncludeSymbols>
2625
<EmbedAllSources>True</EmbedAllSources>

0 commit comments

Comments
 (0)