Files
TL866/InfoIcDump/InfoicDump.csproj
2024-04-04 23:48:18 +03:00

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>