123456789101112131415161718192021222324252627282930313233343536373839 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net35</TargetFramework>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <AssemblyTitle>BepInEx.Patcher</AssemblyTitle>
- <Product>BepInEx.Patcher</Product>
- <DebugType>embedded</DebugType>
- <DebugSymbols>true</DebugSymbols>
- <OutputPath>..\bin\patcher\</OutputPath>
- <LangVersion>8</LangVersion>
- <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup>
- <StartupObject>BepInEx.Patcher.Program</StartupObject>
- </PropertyGroup>
- <Import Project="$(SolutionDir)\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets" Condition="Exists('$(SolutionDir)\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets')" />
- <ItemGroup>
- <PackageReference Include="ILRepack" Version="2.0.16" />
- <PackageReference Include="ILRepack.Lib.MSBuild.Task" Version="2.0.16.1" />
- <PackageReference Include="Mono.Cecil" Version="0.10.4" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Mono.Cecil, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
- <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <None Include="ILRepack.targets" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\BepInEx.Unity\BepInEx.Unity.csproj" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="..\bin\patcher\BepInEx.Bootstrap.dll" />
- </ItemGroup>
- <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
- </Project>
|