46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AssemblyName>JBTrackIR</AssemblyName>
|
|
<Description>SPT TrackIR Support</Description>
|
|
<Version>1.0.1</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>JBTrackIR</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="0Harmony">
|
|
<HintPath>..\References\0Harmony.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Aki.Reflection">
|
|
<HintPath>..\References\Aki.Reflection.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Assembly-CSharp">
|
|
<HintPath>..\References\Assembly-CSharp.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="BepInEx">
|
|
<HintPath>..\References\BepInEx.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="TrackIRUnity">
|
|
<HintPath>..\References\TrackIRUnity.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="UnityEngine">
|
|
<HintPath>..\References\UnityEngine.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.CoreModule">
|
|
<HintPath>..\References\UnityEngine.CoreModule.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|