28 lines
905 B
XML
28 lines
905 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AssemblyName>AlwaysRecFace</AssemblyName>
|
|
<Product>My first plugin</Product>
|
|
<Version>1.0.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>AlwaysRecFace</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="undead_universal_patch_il2cpp">
|
|
<HintPath>AssemblyReferences\undead_universal_patch_il2cpp.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|