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