12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{4FFBA620-F5ED-47F9-B90C-DAD1316FD9B9}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>BepInEx</RootNamespace>
- <AssemblyName>BepInEx</AssemblyName>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <TargetFrameworkProfile />
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\bin\</OutputPath>
- <DefineConstants>TRACE;CECIL_10</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <DocumentationFile>
- </DocumentationFile>
- </PropertyGroup>
- <PropertyGroup>
- <StartupObject />
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Cecil 0.9.6_Release|AnyCPU'">
- <OutputPath>..\bin\</OutputPath>
- <DefineConstants>TRACE;CECIL_9</DefineConstants>
- <Optimize>true</Optimize>
- <PlatformTarget>AnyCPU</PlatformTarget>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="0Harmony">
- <HintPath>..\lib\0Harmony.dll</HintPath>
- </Reference>
- <Reference Include="Mono.Cecil" Condition="$(DefineConstants.Contains('CECIL_9'))">
- <HintPath>..\lib\Cecil 9\Mono.Cecil.dll</HintPath>
- </Reference>
- <Reference Include="Mono.Cecil" Condition="$(DefineConstants.Contains('CECIL_10'))">
- <HintPath>..\lib\Cecil 10\Mono.Cecil.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Xml" />
- <Reference Include="UnityEngine">
- <HintPath>..\lib\UnityEngine.dll</HintPath>
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Contract\Attributes.cs" />
- <Compile Include="Bootstrap\AssemblyPatcher.cs" />
- <Compile Include="Bootstrap\Preloader.cs" />
- <Compile Include="Config.cs" />
- <Compile Include="ConfigWrapper.cs" />
- <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
- <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.cs" />
- <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
- <Compile Include="ConsoleUtil\ConsoleWindow.cs" />
- <Compile Include="ConsoleUtil\Kon.cs" />
- <Compile Include="ConsoleUtil\SafeConsole.cs" />
- <Compile Include="Bootstrap\Chainloader.cs" />
- <Compile Include="Contract\BaseUnityPlugin.cs" />
- <Compile Include="Deprecated\BepInLogger.cs" />
- <Compile Include="Logging\BaseLogger.cs" />
- <Compile Include="Logging\Logger.cs" />
- <Compile Include="Logging\LogLevel.cs" />
- <Compile Include="Logging\PreloaderLogWriter.cs" />
- <Compile Include="Logging\LoggerTraceListener.cs" />
- <Compile Include="Logging\UnityLogWriter.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Bootstrap\TypeLoader.cs" />
- </ItemGroup>
- <ItemGroup />
- <Import Project="..\BepInEx.Common\BepInEx.Common.projitems" Label="Shared" />
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|