51 lines
2.1 KiB
XML
51 lines
2.1 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>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
|
|
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
|
|
<PackageReference Include="Buttplug" Version="3.0.1" />
|
|
<PackageReference Include="Buttplug.Client.Connectors.WebsocketConnector" Version="3.0.1" />
|
|
|
|
<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>
|
|
<Reference Include="Buttplug">
|
|
<HintPath>./deps/Buttplug.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Buttplug.Client.Connectors.WebsocketConnector">
|
|
<HintPath>./deps/Buttplug.Client.Connectors.WebsocketConnector.dll</HintPath>
|
|
</Reference>
|
|
|
|
<!-- the crap that makes this fucking thing work -->
|
|
<PackageReference Include="Costura.Fody" Version="5.7.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Fody" Version="6.8.0">
|
|
<IncludeAssets>runtime; build; compile; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project>
|