mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* Updated to use Nstack v1.1.1 * Updated nuget refs and fixed unit test namespace error * readme fix * Lame change to .sln to try to force build action * Try to fix test action * Try to fix test action 2 * Try to fix test action 3
106 lines
5.5 KiB
XML
106 lines
5.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- =================================================================== -->
|
|
<!-- Version numbers -->
|
|
<!-- Automatically updated by gitversion (run `dotnet-gitversion /updateprojectfiles`) -->
|
|
<!-- GitVersion.xml controls settings -->
|
|
<!-- =================================================================== -->
|
|
<PropertyGroup>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<Version>1.0.0</Version>
|
|
</PropertyGroup>
|
|
<!-- =================================================================== -->
|
|
<!-- .NET Build Settings -->
|
|
<!-- =================================================================== -->
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>portable</DebugType>
|
|
<VersionSuffix></VersionSuffix>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
|
|
<DebugType>portable</DebugType>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net472;netstandard2.1;net7.0</TargetFrameworks>
|
|
<RootNamespace>Terminal.Gui</RootNamespace>
|
|
<AssemblyName>Terminal.Gui</AssemblyName>
|
|
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
|
|
</PropertyGroup>
|
|
<!-- =================================================================== -->
|
|
<!-- Dependencies -->
|
|
<!-- =================================================================== -->
|
|
<ItemGroup>
|
|
<PackageReference Include="NStack.Core" Version="1.1.1" />
|
|
<PackageReference Include="System.Management" Version="8.0.0" />
|
|
<!-- Enable Nuget Source Link for github -->
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
|
|
<InternalsVisibleTo Include="UnitTests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c135ca0dc72ed9549b7ebf23772eb9e3dc2dc9e4a4fb795fa88404a175cfbe230a3d5edb1802c7952b1b5edbeb8136dc16ea6ab03f3f6fed01e9937d8ef40378bee9a31502cd56bfc14adfb2858d438c66d87aea4c54c49bfad28a282bed869af33ac256fe9584b1c5b96479b52a0c95b5a400a7b833820faa272d16ce0586ed" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<!-- Uncomment the RestoreSources element to have dotnet restore pull NStack from a local dir for testing -->
|
|
<!-- See https://stackoverflow.com/a/44463578/297526 -->
|
|
<!--<RestoreSources>$(RestoreSources);..\..\NStack\NStack\bin\Debug;https://api.nuget.org/v3/index.json</RestoreSources>-->
|
|
</PropertyGroup>
|
|
<!-- =================================================================== -->
|
|
<!-- API Documentation -->
|
|
<!-- =================================================================== -->
|
|
<ItemGroup>
|
|
<None Include="..\docfx\images\logo.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Include="..\README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
<!-- =================================================================== -->
|
|
<!-- i18 -->
|
|
<!-- =================================================================== -->
|
|
<ItemGroup>
|
|
<Compile Update="Resources\Strings.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Strings.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Resources\Strings.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<!-- =================================================================== -->
|
|
<!-- Nuget -->
|
|
<!-- =================================================================== -->
|
|
<PropertyGroup>
|
|
<PackageId>Terminal.Gui</PackageId>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/gui-cs/Terminal.Gui/</PackageProjectUrl>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageTags>csharp, terminal, c#, f#, gui, toolkit, console, tui</PackageTags>
|
|
<Description>Cross platform Terminal UI toolkit for .NET</Description>
|
|
<Owners>Tig Kindel</Owners>
|
|
<Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
|
|
<Title>Terminal.Gui - Cross platform Terminal User Interface (TUI) toolkit for .NET</Title>
|
|
<PackageReleaseNotes>
|
|
See: https://github.com/gui-cs/Terminal.Gui/releases
|
|
</PackageReleaseNotes>
|
|
<DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
|
|
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Debug' ">true</GeneratePackageOnBuild>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<RepositoryUrl>https://github.com/gui-cs/Terminal.Gui.git</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
|
|
<GitRepositoryRemoteName>upstream</GitRepositoryRemoteName>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<EnableSourceLink>true</EnableSourceLink>
|
|
<!--<DebugType>Embedded</DebugType>-->
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>Terminal.Gui.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
</Project> |