BepInEx.csproj 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. </PropertyGroup>
  26. <PropertyGroup>
  27. <StartupObject />
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Reference Include="Mono.Cecil, Version=0.10.3.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  31. <HintPath>..\packages\Mono.Cecil.0.10.3\lib\net35\Mono.Cecil.dll</HintPath>
  32. </Reference>
  33. <Reference Include="System" />
  34. <Reference Include="UnityEngine">
  35. <HintPath>..\lib\UnityEngine.dll</HintPath>
  36. <Private>False</Private>
  37. </Reference>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Include="Contract\PluginInfo.cs" />
  41. <Compile Include="Configuration\ConfigDefinition.cs" />
  42. <Compile Include="Configuration\ConfigFile.cs" />
  43. <Compile Include="Configuration\ConfigWrapper.cs" />
  44. <Compile Include="Configuration\TomlTypeConverter.cs" />
  45. <Compile Include="Contract\Attributes.cs" />
  46. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
  47. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.cs" />
  48. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
  49. <Compile Include="ConsoleUtil\ConsoleWindow.cs" />
  50. <Compile Include="ConsoleUtil\Kon.cs" />
  51. <Compile Include="ConsoleUtil\SafeConsole.cs" />
  52. <Compile Include="Bootstrap\Chainloader.cs" />
  53. <Compile Include="Contract\BaseUnityPlugin.cs" />
  54. <Compile Include="Logging\DiskLogListener.cs" />
  55. <Compile Include="Logging\LogEventArgs.cs" />
  56. <Compile Include="Logging\Logger.cs" />
  57. <Compile Include="Logging\LogLevel.cs" />
  58. <Compile Include="Logging\ILogListener.cs" />
  59. <Compile Include="Logging\ILogSource.cs" />
  60. <Compile Include="Logging\ManualLogSource.cs" />
  61. <Compile Include="Logging\TraceLogSource.cs" />
  62. <Compile Include="Logging\ConsoleLogListener.cs" />
  63. <Compile Include="Logging\UnityLogListener.cs" />
  64. <Compile Include="Logging\UnityLogSource.cs" />
  65. <Compile Include="Paths.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <Compile Include="Bootstrap\TypeLoader.cs" />
  68. <Compile Include="Utility.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="..\submodules\BepInEx.Harmony\submodules\Harmony\Harmony\Harmony.csproj">
  72. <Project>{a15d6ee6-f954-415b-8605-8a8470cc87dc}</Project>
  73. <Name>Harmony</Name>
  74. </ProjectReference>
  75. <ProjectReference Include="..\submodules\BepInEx.Harmony\BepInEx.Harmony\BepInEx.Harmony.csproj">
  76. <Project>{54161cfe-ff42-4dde-b161-3a49545db5cd}</Project>
  77. <Name>BepInEx.Harmony</Name>
  78. </ProjectReference>
  79. </ItemGroup>
  80. <ItemGroup>
  81. <None Include="packages.config" />
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. </Project>