123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?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.Core</RootNamespace>
- <AssemblyName>BepInEx.Core</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</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <DocumentationFile>..\bin\BepInEx.Core.xml</DocumentationFile>
- </PropertyGroup>
- <PropertyGroup>
- <StartupObject />
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>TRACE;DEBUG</DefineConstants>
- <DocumentationFile>
- </DocumentationFile>
- <Optimize>false</Optimize>
- <PlatformTarget>x86</PlatformTarget>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
- <DebugType>full</DebugType>
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="0Harmony, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>C:\Users\Richard\.nuget\packages\harmonyx\2.1.0-beta.8\lib\net35\0Harmony.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Bootstrap\BaseChainloader.cs" />
- <Compile Include="Configuration\AcceptableValueBase.cs" />
- <Compile Include="Configuration\AcceptableValueList.cs" />
- <Compile Include="Configuration\AcceptableValueRange.cs" />
- <Compile Include="Configuration\ConfigEntryBase.cs" />
- <Compile Include="Console\ConsoleManager.cs" />
- <Compile Include="Console\IConsoleDriver.cs" />
- <Compile Include="Console\SafeConsole.cs" />
- <Compile Include="Console\Unix\ConsoleWriter.cs" />
- <Compile Include="Console\Unix\LinuxConsoleDriver.cs" />
- <Compile Include="Console\Unix\TtyHandler.cs" />
- <Compile Include="Console\Unix\UnixStream.cs" />
- <Compile Include="Console\Unix\UnixStreamHelper.cs" />
- <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
- <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.cs" />
- <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
- <Compile Include="Console\Windows\ConsoleWindow.cs" />
- <Compile Include="Console\Windows\Kon.cs" />
- <Compile Include="Console\Windows\WindowsConsoleDriver.cs" />
- <Compile Include="Contract\PluginInfo.cs" />
- <Compile Include="Configuration\ConfigDefinition.cs" />
- <Compile Include="Configuration\ConfigDescription.cs" />
- <Compile Include="Configuration\ConfigFile.cs" />
- <Compile Include="Configuration\ConfigWrapper.cs" />
- <Compile Include="Configuration\SettingChangedEventArgs.cs" />
- <Compile Include="Configuration\TomlTypeConverter.cs" />
- <Compile Include="Configuration\TypeConverter.cs" />
- <Compile Include="Contract\Attributes.cs" />
- <Compile Include="Logging\DiskLogListener.cs" />
- <Compile Include="Logging\HarmonyLogSource.cs" />
- <Compile Include="Logging\LogEventArgs.cs" />
- <Compile Include="Logging\Logger.cs" />
- <Compile Include="Logging\LogLevel.cs" />
- <Compile Include="Logging\ILogListener.cs" />
- <Compile Include="Logging\ILogSource.cs" />
- <Compile Include="Logging\ManualLogSource.cs" />
- <Compile Include="Logging\StdOutLogListener.cs" />
- <Compile Include="Logging\TraceLogSource.cs" />
- <Compile Include="Logging\ConsoleLogListener.cs" />
- <Compile Include="Paths.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Bootstrap\TypeLoader.cs" />
- <Compile Include="Utility.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="HarmonyX">
- <Version>2.1.0-beta.8</Version>
- </PackageReference>
- <PackageReference Include="Mono.Cecil">
- <Version>0.10.4</Version>
- </PackageReference>
- <PackageReference Include="MonoMod.Utils">
- <Version>20.11.5.1</Version>
- </PackageReference>
- </ItemGroup>
- <ItemGroup />
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|