BepInEx.NetLauncher.csproj 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>{490B052B-7F23-4052-AD04-613856618901}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>BepInEx.NetLauncher</RootNamespace>
  10. <AssemblyName>BepInEx.NetLauncher</AssemblyName>
  11. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <PlatformTarget>AnyCPU</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>..\bin\net\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>..\bin\NetLauncher\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <DocumentationFile>
  37. </DocumentationFile>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="BasePlugin.cs" />
  45. <Compile Include="NetChainloader.cs" />
  46. <Compile Include="NetPreloader.cs" />
  47. <Compile Include="Program.cs" />
  48. <Compile Include="Properties\AssemblyInfo.cs" />
  49. <Compile Include="RuntimeFixes\AssemblyFix.cs" />
  50. <Compile Include="Utility.cs" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Include="App.config" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj">
  57. <Project>{4ffba620-f5ed-47f9-b90c-dad1316fd9b9}</Project>
  58. <Name>BepInEx.Core</Name>
  59. </ProjectReference>
  60. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj">
  61. <Project>{15f8bc38-a761-4f93-8903-1b531ac5d9f9}</Project>
  62. <Name>BepInEx.Preloader.Core</Name>
  63. </ProjectReference>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <PackageReference Include="HarmonyX">
  67. <Version>2.1.0-beta.8</Version>
  68. </PackageReference>
  69. </ItemGroup>
  70. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  71. </Project>