BepInEx.csproj 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{4FFBA620-F5ED-47F9-B90C-DAD1316FD9B9}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>BepInEx</RootNamespace>
  10. <AssemblyName>BepInEx</AssemblyName>
  11. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugType>none</DebugType>
  19. <Optimize>true</Optimize>
  20. <OutputPath>..\bin\</OutputPath>
  21. <DefineConstants>TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <DocumentationFile>..\bin\BepInEx.xml</DocumentationFile>
  25. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <PropertyGroup>
  28. <StartupObject />
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  31. <OutputPath>bin\Debug\</OutputPath>
  32. <DefineConstants>TRACE;DEBUG</DefineConstants>
  33. <DocumentationFile>
  34. </DocumentationFile>
  35. <Optimize>false</Optimize>
  36. <PlatformTarget>x86</PlatformTarget>
  37. <ErrorReport>prompt</ErrorReport>
  38. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  39. <DebugType>full</DebugType>
  40. <DebugSymbols>true</DebugSymbols>
  41. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="0Harmony, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null">
  45. <HintPath>$(SolutionDir)\packages\HarmonyX.2.1.0-beta.7\lib\net35\0Harmony.dll</HintPath>
  46. <Private>True</Private>
  47. </Reference>
  48. <Reference Include="Mono.Cecil, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  49. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.dll</HintPath>
  50. </Reference>
  51. <Reference Include="Mono.Cecil.Mdb, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  52. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.Mdb.dll</HintPath>
  53. </Reference>
  54. <Reference Include="Mono.Cecil.Pdb, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  55. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.Pdb.dll</HintPath>
  56. </Reference>
  57. <Reference Include="Mono.Cecil.Rocks, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  58. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.Rocks.dll</HintPath>
  59. </Reference>
  60. <Reference Include="MonoMod.RuntimeDetour, Version=20.11.5.1, Culture=neutral, PublicKeyToken=null">
  61. <HintPath>$(SolutionDir)\packages\MonoMod.RuntimeDetour.20.11.5.1\lib\net35\MonoMod.RuntimeDetour.dll</HintPath>
  62. <Private>True</Private>
  63. </Reference>
  64. <Reference Include="MonoMod.Utils, Version=20.11.5.1, Culture=neutral, PublicKeyToken=null">
  65. <HintPath>$(SolutionDir)\packages\MonoMod.Utils.20.11.5.1\lib\net35\MonoMod.Utils.dll</HintPath>
  66. <Private>True</Private>
  67. </Reference>
  68. <Reference Include="System" />
  69. <Reference Include="UnityEngine">
  70. <HintPath>..\lib\UnityEngine.dll</HintPath>
  71. <Private>False</Private>
  72. </Reference>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="Configuration\AcceptableValueBase.cs" />
  76. <Compile Include="Configuration\AcceptableValueList.cs" />
  77. <Compile Include="Configuration\AcceptableValueRange.cs" />
  78. <Compile Include="Configuration\ConfigEntryBase.cs" />
  79. <Compile Include="Console\ConsoleManager.cs" />
  80. <Compile Include="Console\IConsoleDriver.cs" />
  81. <Compile Include="Console\Unix\ConsoleWriter.cs" />
  82. <Compile Include="Console\Unix\LinuxConsoleDriver.cs" />
  83. <Compile Include="Console\Unix\TtyHandler.cs" />
  84. <Compile Include="Console\Unix\UnixStream.cs" />
  85. <Compile Include="Console\Unix\UnixStreamHelper.cs" />
  86. <Compile Include="Console\Windows\WindowsConsoleDriver.cs" />
  87. <Compile Include="Contract\PluginInfo.cs" />
  88. <Compile Include="Configuration\ConfigDefinition.cs" />
  89. <Compile Include="Configuration\ConfigDescription.cs" />
  90. <Compile Include="Configuration\ConfigFile.cs" />
  91. <Compile Include="Configuration\ConfigWrapper.cs" />
  92. <Compile Include="Configuration\KeyboardShortcut.cs" />
  93. <Compile Include="Configuration\SettingChangedEventArgs.cs" />
  94. <Compile Include="Configuration\TomlTypeConverter.cs" />
  95. <Compile Include="Configuration\TypeConverter.cs" />
  96. <Compile Include="Contract\Attributes.cs" />
  97. <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
  98. <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.cs" />
  99. <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
  100. <Compile Include="Console\Windows\ConsoleWindow.cs" />
  101. <Compile Include="Console\Windows\Kon.cs" />
  102. <Compile Include="Console\SafeConsole.cs" />
  103. <Compile Include="Bootstrap\Chainloader.cs" />
  104. <Compile Include="Contract\BaseUnityPlugin.cs" />
  105. <Compile Include="Logging\DiskLogListener.cs" />
  106. <Compile Include="Logging\HarmonyLogSource.cs" />
  107. <Compile Include="Logging\LogEventArgs.cs" />
  108. <Compile Include="Logging\Logger.cs" />
  109. <Compile Include="Logging\LogLevel.cs" />
  110. <Compile Include="Logging\ILogListener.cs" />
  111. <Compile Include="Logging\ILogSource.cs" />
  112. <Compile Include="Logging\ManualLogSource.cs" />
  113. <Compile Include="Logging\TraceLogSource.cs" />
  114. <Compile Include="Logging\ConsoleLogListener.cs" />
  115. <Compile Include="Logging\UnityLogListener.cs" />
  116. <Compile Include="Logging\UnityLogSource.cs" />
  117. <Compile Include="Paths.cs" />
  118. <Compile Include="Properties\AssemblyInfo.cs" />
  119. <Compile Include="Bootstrap\TypeLoader.cs" />
  120. <Compile Include="ThreadingHelper.cs" />
  121. <Compile Include="Utility.cs" />
  122. </ItemGroup>
  123. <ItemGroup>
  124. <ProjectReference Include="..\submodules\BepInEx.Harmony\BepInEx.Harmony\BepInEx.Harmony.csproj">
  125. <Project>{54161cfe-ff42-4dde-b161-3a49545db5cd}</Project>
  126. <Name>BepInEx.Harmony</Name>
  127. </ProjectReference>
  128. </ItemGroup>
  129. <ItemGroup>
  130. <None Include="packages.config" />
  131. </ItemGroup>
  132. <ItemGroup />
  133. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  134. </Project>