75 lines
3.3 KiB
XML
75 lines
3.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<PreserveCompilationContext>false</PreserveCompilationContext>
|
|
<OutputType>Exe</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<AssemblyName>Bottle</AssemblyName>
|
|
<Deterministic>true</Deterministic>
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
<CopyLocalLockFileAssemblies>True</CopyLocalLockFileAssemblies>
|
|
<ApplicationIcon>icon/Bottle.ico</ApplicationIcon>
|
|
<SelfContained>True</SelfContained>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<BaseAddress>285212672</BaseAddress>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<ConfigurationOverrideFile>
|
|
</ConfigurationOverrideFile>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<DocumentationFile></DocumentationFile>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<FileAlignment>4096</FileAlignment>
|
|
<Optimize>False</Optimize>
|
|
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
|
|
<UseCommonOutputDirectory>False</UseCommonOutputDirectory>
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>False</AppendRuntimeIdentifierToOutputPath>
|
|
<OutputPath>..\..\bootstrap\debug\</OutputPath>
|
|
<RegisterForComInterop>False</RegisterForComInterop>
|
|
<RemoveIntegerChecks>False</RemoveIntegerChecks>
|
|
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
|
|
<WarningLevel>4</WarningLevel>
|
|
<NoStdLib>False</NoStdLib>
|
|
<NoWarn>1595</NoWarn>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<BaseAddress>285212672</BaseAddress>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<ConfigurationOverrideFile>
|
|
</ConfigurationOverrideFile>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<DocumentationFile></DocumentationFile>
|
|
<DebugSymbols>False</DebugSymbols>
|
|
<FileAlignment>4096</FileAlignment>
|
|
<Optimize>True</Optimize>
|
|
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
|
|
<UseCommonOutputDirectory>False</UseCommonOutputDirectory>
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>False</AppendRuntimeIdentifierToOutputPath>
|
|
<OutputPath>..\..\bootstrap\</OutputPath>
|
|
<RegisterForComInterop>False</RegisterForComInterop>
|
|
<RemoveIntegerChecks>False</RemoveIntegerChecks>
|
|
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
|
|
<WarningLevel>4</WarningLevel>
|
|
<NoStdLib>False</NoStdLib>
|
|
<NoWarn>1595</NoWarn>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Update="icon\Bottle.ico">
|
|
<SubType>Code</SubType>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Compile>
|
|
<Compile Update="icon\Bottle.png">
|
|
<SubType>Code</SubType>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project>
|