29 lines
No EOL
961 B
XML
29 lines
No EOL
961 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<StartupObject>SharpCreditsCrediter.Program</StartupObject>
|
|
<ApplicationIcon>fryble.ico</ApplicationIcon>
|
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
|
<EnableNETAnalyzers>False</EnableNETAnalyzers>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="fryble.ico" />
|
|
</ItemGroup>
|
|
|
|
</Project> |