Skip to content

Commit

Permalink
Upgraded to .net 9
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsakharov committed Nov 23, 2024
1 parent 07cefe0 commit 8390589
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion External/Prowl.DotRecast
Submodule Prowl.DotRecast updated 22 files
+58 −65 DotRecast.sln
+3 −7 src/DotRecast.Detour.Extras/DotRecast.Detour.Extras.csproj
+0 −34 src/DotRecast.Detour.Extras/Unity/Astar/BVTreeCreator.cs
+0 −53 src/DotRecast.Detour.Extras/Unity/Astar/GraphConnectionReader.cs
+0 −44 src/DotRecast.Detour.Extras/Unity/Astar/GraphData.cs
+0 −78 src/DotRecast.Detour.Extras/Unity/Astar/GraphMeshData.cs
+0 −176 src/DotRecast.Detour.Extras/Unity/Astar/GraphMeshDataReader.cs
+0 −54 src/DotRecast.Detour.Extras/Unity/Astar/GraphMeta.cs
+0 −42 src/DotRecast.Detour.Extras/Unity/Astar/GraphMetaReader.cs
+0 −87 src/DotRecast.Detour.Extras/Unity/Astar/LinkBuilder.cs
+0 −90 src/DotRecast.Detour.Extras/Unity/Astar/Meta.cs
+0 −59 src/DotRecast.Detour.Extras/Unity/Astar/MetaReader.cs
+0 −42 src/DotRecast.Detour.Extras/Unity/Astar/NodeIndexReader.cs
+0 −41 src/DotRecast.Detour.Extras/Unity/Astar/NodeLink2.cs
+0 −55 src/DotRecast.Detour.Extras/Unity/Astar/NodeLink2Reader.cs
+0 −77 src/DotRecast.Detour.Extras/Unity/Astar/OffMeshLinkCreator.cs
+0 −83 src/DotRecast.Detour.Extras/Unity/Astar/UnityAStarPathfindingImporter.cs
+0 −72 src/DotRecast.Detour.Extras/Unity/Astar/UnityAStarPathfindingReader.cs
+0 −40 src/DotRecast.Detour.Extras/Unity/Astar/ZipBinaryReader.cs
+3 −12 src/DotRecast.Recast.Demo/RecastDemo.cs
+0 −31 test/DotRecast.Detour.Extras.Test/DotRecast.Detour.Extras.Test.csproj
+0 −143 test/DotRecast.Detour.Extras.Test/Unity/Astar/UnityAStarPathfindingImporterTest.cs
2 changes: 1 addition & 1 deletion External/Prowl.Veldrid
Submodule Prowl.Veldrid updated 237 files
2 changes: 1 addition & 1 deletion Prowl.Editor/Project/CSProjectOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void GenerateCSProject(

propertyGroupXML.RemoveNodes();

propertyGroupXML.Add(new XElement("TargetFramework", "net8.0"));
propertyGroupXML.Add(new XElement("TargetFramework", "net9.0"));

propertyGroupXML.Add(new XElement("OutputType", OutputExecutable ? "Exe" : "Library"));

Expand Down
2 changes: 1 addition & 1 deletion Prowl.Editor/Project/ProjectCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private static bool CheckForSDKInstallation(string sdkVersion)

public static int CompileCSProject(FileInfo project, DotnetCompileOptions options)
{
if (!CheckForSDKInstallation("8.0"))
if (!CheckForSDKInstallation("9.0"))
return 1;

ProcessStartInfo startInfo = new()
Expand Down
2 changes: 1 addition & 1 deletion Prowl.Editor/Prowl.Editor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down
2 changes: 1 addition & 1 deletion Prowl.Players/Prowl.Desktop/Prowl.Desktop.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- For IntelliSense purposes, leave some project defaults to be removed here - these should be overwritten in an actual build -->
<PropertyGroup Label="RemoveFromBuild">
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>DesktopPlayer</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsAotCompatible>true</IsAotCompatible>
Expand Down
4 changes: 2 additions & 2 deletions Prowl.Runtime.Test/Prowl.Runtime.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand All @@ -12,7 +12,7 @@
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.InMemory" Version="0.11.0" />
<PackageReference Include="Xunit" Version="2.9.0"/>
<PackageReference Include="Xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion Prowl.Runtime/Prowl.Runtime.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<TargetType>library</TargetType>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit 8390589

Please sign in to comment.