123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net35</TargetFramework>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <AssemblyTitle>BepInEx</AssemblyTitle>
- <Product>BepInEx</Product>
- <Description>Unity plugin injection framework</Description>
- <Copyright>Copyright © Bepis 2018</Copyright>
- <AssemblyVersion>6.0.0.0</AssemblyVersion>
- <FileVersion>6.0.0.0</FileVersion>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <OutputPath>..\bin\</OutputPath>
- <DocumentationFile>..\bin\BepInEx.Core.xml</DocumentationFile>
- </PropertyGroup>
- <PropertyGroup>
- <StartupObject />
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
- <OutputPath>bin\$(Configuration)\</OutputPath>
- <DocumentationFile />
- <PlatformTarget>x86</PlatformTarget>
- <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
- <DebugType>full</DebugType>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="0Harmony, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>C:\Users\Richard\.nuget\packages\harmonyx\2.1.0-beta.8\lib\net35\0Harmony.dll</HintPath>
- <SpecificVersion>False</SpecificVersion>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="HarmonyX" Version="2.1.1" />
- <PackageReference Include="Mono.Cecil" Version="0.10.4" />
- <PackageReference Include="MonoMod.Utils" Version="20.11.5.1" />
- </ItemGroup>
- <ItemGroup>
- <Compile Remove="Contract\IPlugin.cs" />
- </ItemGroup>
- </Project>
|