BepInEx.csproj 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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>
  25. </DocumentationFile>
  26. </PropertyGroup>
  27. <PropertyGroup>
  28. <StartupObject />
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  31. <OutputPath>..\bin\</OutputPath>
  32. <DefineConstants>TRACE;DEBUG</DefineConstants>
  33. <Optimize>true</Optimize>
  34. <PlatformTarget>AnyCPU</PlatformTarget>
  35. <ErrorReport>prompt</ErrorReport>
  36. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  37. <DebugSymbols>false</DebugSymbols>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="0Harmony">
  41. <HintPath>..\lib\0Harmony.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Mono.Cecil">
  44. <HintPath>..\lib\Mono.Cecil.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System" />
  47. <Reference Include="UnityEngine">
  48. <HintPath>..\lib\UnityEngine.dll</HintPath>
  49. <Private>False</Private>
  50. </Reference>
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="Bootstrap\Entrypoint.cs" />
  54. <Compile Include="Contract\Attributes.cs" />
  55. <Compile Include="Bootstrap\AssemblyPatcher.cs" />
  56. <Compile Include="Bootstrap\Preloader.cs" />
  57. <Compile Include="Config.cs" />
  58. <Compile Include="ConfigWrapper.cs" />
  59. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
  60. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.cs" />
  61. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
  62. <Compile Include="ConsoleUtil\ConsoleWindow.cs" />
  63. <Compile Include="ConsoleUtil\Kon.cs" />
  64. <Compile Include="ConsoleUtil\SafeConsole.cs" />
  65. <Compile Include="Bootstrap\Chainloader.cs" />
  66. <Compile Include="Contract\BaseUnityPlugin.cs" />
  67. <Compile Include="Deprecated\BepInLogger.cs" />
  68. <Compile Include="Logging\BaseLogger.cs" />
  69. <Compile Include="Logging\Logger.cs" />
  70. <Compile Include="Logging\LogLevel.cs" />
  71. <Compile Include="Logging\PreloaderLogWriter.cs" />
  72. <Compile Include="Logging\LoggerTraceListener.cs" />
  73. <Compile Include="Logging\UnityLogWriter.cs" />
  74. <Compile Include="Paths.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. <Compile Include="Bootstrap\TypeLoader.cs" />
  77. <Compile Include="Utility.cs" />
  78. </ItemGroup>
  79. <ItemGroup />
  80. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  81. </Project>