mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-28 16:58:01 +01:00
* Add a native AOT project. * Fixes Text.Json to work with native AOT. * Fix silent errors on unit tests when testing the Red color which has a length of 3. * Allowing test custom configuration without the config.json file match the unit tests configurations. * Fix unit test if tested alone. * Add native project into solution. * Fix merge errors. * Setting ConfigurationManager.ThrowOnJsonErrors as true to throw any serialization issue when published file runs. * Remove unnecessary using's. * Added unit test to ensure all serialization is properly configured. * Fix warnings. * Remove ThrowOnJsonErrors. * Fix warnings. --------- Co-authored-by: Tig <tig@users.noreply.github.com>
23 lines
765 B
XML
23 lines
765 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishAot>true</PublishAot>
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
|
</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>
|