123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net35</TargetFramework>
- <AssemblyTitle>BepInEx.Preloader.Unity</AssemblyTitle>
- <Product>BepInEx.Preloader.Unity</Product>
- <Copyright>Copyright © 2020</Copyright>
- <OutputPath>..\bin\</OutputPath>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugType>full</DebugType>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <DocumentationFile>..\bin\BepInEx.Preloader.Unity.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
- <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="HarmonyX" Version="2.1.1" />
- </ItemGroup>
- </Project>
|