Terminal.Gui.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- =================================================================== -->
  3. <!-- Version numbers -->
  4. <!-- Automatically updated by gitversion (run `dotnet-gitversion /updateprojectfiles`) -->
  5. <!-- GitVersion.xml controls settings -->
  6. <!-- =================================================================== -->
  7. <PropertyGroup>
  8. <FileVersion>1.0.0.0</FileVersion>
  9. <Version>1.0.0</Version>
  10. </PropertyGroup>
  11. <!-- =================================================================== -->
  12. <!-- .NET Build Settings -->
  13. <!-- =================================================================== -->
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  15. <DebugType>portable</DebugType>
  16. <VersionSuffix></VersionSuffix>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  20. <DebugType>portable</DebugType>
  21. </PropertyGroup>
  22. <PropertyGroup>
  23. <TargetFrameworks>net472;netstandard2.1;net7.0</TargetFrameworks>
  24. <RootNamespace>Terminal.Gui</RootNamespace>
  25. <AssemblyName>Terminal.Gui</AssemblyName>
  26. <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
  27. </PropertyGroup>
  28. <!-- =================================================================== -->
  29. <!-- Dependencies -->
  30. <!-- =================================================================== -->
  31. <ItemGroup>
  32. <PackageReference Include="NStack.Core" Version="1.1.1" />
  33. <PackageReference Include="System.Management" Version="8.0.0" />
  34. <!-- Enable Nuget Source Link for github -->
  35. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
  36. <InternalsVisibleTo Include="UnitTests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c135ca0dc72ed9549b7ebf23772eb9e3dc2dc9e4a4fb795fa88404a175cfbe230a3d5edb1802c7952b1b5edbeb8136dc16ea6ab03f3f6fed01e9937d8ef40378bee9a31502cd56bfc14adfb2858d438c66d87aea4c54c49bfad28a282bed869af33ac256fe9584b1c5b96479b52a0c95b5a400a7b833820faa272d16ce0586ed" />
  37. </ItemGroup>
  38. <PropertyGroup>
  39. <!-- Uncomment the RestoreSources element to have dotnet restore pull NStack from a local dir for testing -->
  40. <!-- See https://stackoverflow.com/a/44463578/297526 -->
  41. <!--<RestoreSources>$(RestoreSources);..\..\NStack\NStack\bin\Debug;https://api.nuget.org/v3/index.json</RestoreSources>-->
  42. </PropertyGroup>
  43. <!-- =================================================================== -->
  44. <!-- API Documentation -->
  45. <!-- =================================================================== -->
  46. <ItemGroup>
  47. <None Include="..\docfx\images\logo.png">
  48. <Pack>True</Pack>
  49. <PackagePath>\</PackagePath>
  50. </None>
  51. <None Include="..\README.md">
  52. <Pack>True</Pack>
  53. <PackagePath>\</PackagePath>
  54. </None>
  55. </ItemGroup>
  56. <!-- =================================================================== -->
  57. <!-- i18 -->
  58. <!-- =================================================================== -->
  59. <ItemGroup>
  60. <Compile Update="Resources\Strings.Designer.cs">
  61. <DesignTime>True</DesignTime>
  62. <AutoGen>True</AutoGen>
  63. <DependentUpon>Strings.resx</DependentUpon>
  64. </Compile>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <EmbeddedResource Update="Resources\Strings.resx">
  68. <Generator>ResXFileCodeGenerator</Generator>
  69. <LastGenOutput>Strings.Designer.cs</LastGenOutput>
  70. </EmbeddedResource>
  71. </ItemGroup>
  72. <!-- =================================================================== -->
  73. <!-- Nuget -->
  74. <!-- =================================================================== -->
  75. <PropertyGroup>
  76. <PackageId>Terminal.Gui</PackageId>
  77. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  78. <PackageProjectUrl>https://github.com/gui-cs/Terminal.Gui/</PackageProjectUrl>
  79. <PackageIcon>logo.png</PackageIcon>
  80. <PackageReadmeFile>README.md</PackageReadmeFile>
  81. <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console, tui</PackageTags>
  82. <Description>Cross platform Terminal UI toolkit for .NET</Description>
  83. <Owners>Tig Kindel</Owners>
  84. <Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
  85. <Title>Terminal.Gui - Cross platform Terminal User Interface (TUI) toolkit for .NET</Title>
  86. <PackageReleaseNotes>
  87. See: https://github.com/gui-cs/Terminal.Gui/releases
  88. </PackageReleaseNotes>
  89. <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
  90. <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Debug' ">true</GeneratePackageOnBuild>
  91. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  92. <RepositoryUrl>https://github.com/gui-cs/Terminal.Gui.git</RepositoryUrl>
  93. <RepositoryType>git</RepositoryType>
  94. <IncludeSymbols>true</IncludeSymbols>
  95. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  96. <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
  97. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  98. <!-- Embed source files that are not tracked by the source control manager in the PDB -->
  99. <GitRepositoryRemoteName>upstream</GitRepositoryRemoteName>
  100. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  101. <EnableSourceLink>true</EnableSourceLink>
  102. <!--<DebugType>Embedded</DebugType>-->
  103. <SignAssembly>True</SignAssembly>
  104. <AssemblyOriginatorKeyFile>Terminal.Gui.snk</AssemblyOriginatorKeyFile>
  105. </PropertyGroup>
  106. </Project>