32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AssemblyName>MetalButtplug</AssemblyName>
|
|
<Description>buttplug.io support for Metal: Hellsinger</Description>
|
|
<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
|
|
</RestoreAdditionalProjectSources>
|
|
<RootNamespace>MetalButtplug</RootNamespace>
|
|
<NoWarn>$(NoWarn);NU1603</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
|
|
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
|
|
<Reference Include="UnityEngine.CoreModule">
|
|
<HintPath>./BepInEx/interop/UnityEngine.CoreModule.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Assembly-CSharp">
|
|
<HintPath>./BepInEx/interop/Assembly-CSharp.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Il2Cppmscorlib">
|
|
<HintPath>./BepInEx/interop/Il2Cppmscorlib.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|