42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<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>
|