mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
26 lines
887 B
XML
26 lines
887 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<TrimMode>Link</TrimMode>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
<TrimmerRootAssembly Include="Terminal.Gui" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<PackageReference Include="Terminal.Gui" Version="[2.0.0-pre.1788,3)" />
|
|
<TrimmerRootAssembly Include="Terminal.Gui" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|