Terminal.Gui.csproj 5.3 KB

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