BepInEx.Unity.csproj 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>{EAE9FAE6-8011-45A3-8B6E-0C7F14210533}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BepInEx.Unity</RootNamespace>
  11. <AssemblyName>BepInEx.Unity</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\bin\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\bin\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <DocumentationFile>..\bin\BepInEx.Unity.xml</DocumentationFile>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Mono.Cecil, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  36. <HintPath>..\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.dll</HintPath>
  37. </Reference>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="UnityEngine">
  41. <HintPath>..\lib\UnityEngine.dll</HintPath>
  42. <Private>False</Private>
  43. </Reference>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="BaseUnityPlugin.cs" />
  47. <Compile Include="Bootstrap\UnityChainloader.cs" />
  48. <Compile Include="BepInExInstance.cs" />
  49. <Compile Include="Configuration\KeyboardShortcut.cs" />
  50. <Compile Include="Logging\UnityLogListener.cs" />
  51. <Compile Include="Logging\UnityLogSource.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="ThreadingHelper.cs" />
  54. <Compile Include="UnityTomlTypeConverters.cs" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj">
  58. <Project>{4ffba620-f5ed-47f9-b90c-dad1316fd9b9}</Project>
  59. <Name>BepInEx.Core</Name>
  60. </ProjectReference>
  61. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj">
  62. <Project>{15F8BC38-A761-4F93-8903-1B531AC5D9F9}</Project>
  63. <Name>BepInEx.Preloader.Core</Name>
  64. </ProjectReference>
  65. <ProjectReference Include="..\BepInEx.Preloader.Unity\BepInEx.Preloader.Unity.csproj">
  66. <Project>{d404c973-441d-48ed-b266-c21320ba0d87}</Project>
  67. <Name>BepInEx.Preloader.Unity</Name>
  68. </ProjectReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="packages.config" />
  72. </ItemGroup>
  73. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  74. </Project>