mirror of
https://github.com/radiomanV/TL866.git
synced 2026-02-20 01:31:36 +01:00
49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Platforms>AnyCPU;x86</Platforms>
|
|
<ApplicationIcon>chip.ico</ApplicationIcon>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<PublishTrimmed>True</PublishTrimmed>
|
|
<PublishAot>False</PublishAot>
|
|
<SignAssembly>False</SignAssembly>
|
|
<StartupObject>InfoIcDump.Dumper</StartupObject>
|
|
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="chip.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="configs.csv">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|