2024-08-08 13:32:25 +07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2024-06-01 19:30:03 +07:00
|
|
|
|
<PropertyGroup>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
<TargetFramework>net45</TargetFramework>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
<AssemblyName>UnlockFrameRate</AssemblyName>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
<Version>1.0.0</Version>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
</PropertyGroup>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
|
2024-06-01 19:30:03 +07:00
|
|
|
|
<ItemGroup>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all"/>
|
|
|
|
|
<PackageReference Include="BepInEx.Core" Version="5.*"/>
|
|
|
|
|
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*"/>
|
|
|
|
|
<PackageReference Include="UnityEngine.Modules" Version="5.6.0" IncludeAssets="compile"/>
|
|
|
|
|
<Reference Include="MonoMod">
|
|
|
|
|
<HintPath>..\External\MonoMod.exe</HintPath>
|
|
|
|
|
<Private>False</Private>
|
|
|
|
|
</Reference>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
<Reference Include="Assembly-CSharp">
|
|
|
|
|
<HintPath>..\External\Assembly-CSharp.dll</HintPath>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
<Private>False</Private>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="UnityEngine">
|
|
|
|
|
<HintPath>..\External\UnityEngine.dll</HintPath>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
<Private>False</Private>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="UnityEngine.CoreModule">
|
|
|
|
|
<HintPath>..\External\UnityEngine.CoreModule.dll</HintPath>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
<Private>False</Private>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
2024-08-08 13:32:25 +07:00
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
|
|
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all"/>
|
2024-06-01 19:30:03 +07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|