12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net452</TargetFramework>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <AssemblyTitle>BepInEx.NetLauncher</AssemblyTitle>
- <Product>BepInEx.NetLauncher</Product>
- <LangVersion>8</LangVersion>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugType>full</DebugType>
- <OutputPath>..\bin\net\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>portable</DebugType>
- <OutputPath>..\bin\NetLauncher\</OutputPath>
- <DocumentationFile />
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
- <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="HarmonyX" Version="2.1.1" />
- </ItemGroup>
- <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
- </Project>
|