123456789101112131415161718192021222324252627282930 |
- <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\Debug</OutputPath>
- <PlatformTarget>x86</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>portable</DebugType>
- <OutputPath>..\bin\NetLauncher\</OutputPath>
- <DocumentationFile />
- <PlatformTarget>x86</PlatformTarget>
- </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.2.0" />
- </ItemGroup>
- <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
- </Project>
|