Upgraded project to .NET9 and updated readme.

This commit is contained in:
BillyCool
2024-11-23 21:45:02 +11:00
parent ee620b2454
commit 323fa9a3e6
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# Marie's Wonderland
An attempt at a private server implementation for mobile game NieR Reincarnation.
An attempt at a private server implementation for mobile game NieR Reincarnation. The project is currently on hold due to a bug with Frida and newer versions of Android/Google Play that prevent running Frida Server correctly on mobile devices, more details [here](https://github.com/frida/frida/issues/2958).
## Game information
- Built in Unity 2019.4.29 with C# and IL2CPP

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
@@ -11,7 +11,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.64.0" />
<PackageReference Include="Grpc.AspNetCore" Version="2.67.0" />
</ItemGroup>
</Project>