Initial commit

This commit is contained in:
2026-05-30 18:28:51 -04:00
commit d78e8d0910
11 changed files with 1337 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net35;net6.0</TargetFrameworks>
<AssemblyName>UndeadUniversalPatch</AssemblyName>
<Product>Patches targeting Rec Room builds</Product>
<Version>0.1.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
https://nuget.samboy.dev/v3/index.json
</RestoreAdditionalProjectSources>
<RootNamespace>UndeadUniversalPatch</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="UnityEngine.Modules" Version="5.6.0" IncludeAssets="compile" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net35'">
<PackageReference Include="BepInEx.Unity.Mono" Version="6.0.0-be.*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" />
<PackageReference Include="System.Threading.Tasks.Extensions">
<Version>4.6.3</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove=".editorconfig" />
</ItemGroup>
<ItemGroup>
<Folder Include="Patches\" />
</ItemGroup>
</Project>