Terminal.Gui.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  3. <DebugType>portable</DebugType>
  4. </PropertyGroup>
  5. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  6. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  7. <DebugType>portable</DebugType>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  11. <!-- In the source tree the version will always be 1.0 for all projects. -->
  12. <!-- Do not modify these. Do NOT commit after manually running `dotnet-gitversion /updateprojectfiles` -->
  13. <AssemblyVersion>1.10.1.0</AssemblyVersion>
  14. <FileVersion>1.10.1.0</FileVersion>
  15. <Version>1.10.1</Version>
  16. <InformationalVersion>1.10.1+6.Branch.main.Sha.f7ee66ddbf8dbcfb0d96af7d63789879091670ec</InformationalVersion>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
  20. <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
  21. <PackageReference Include="NStack.Core" Version="1.0.7" />
  22. <InternalsVisibleTo Include="UnitTests" />
  23. </ItemGroup>
  24. <!-- Uncomment the RestoreSources element to have dotnet restore pull NStack from a local dir for testing -->
  25. <PropertyGroup>
  26. <!-- See https://stackoverflow.com/a/44463578/297526 -->
  27. <!--<RestoreSources>$(RestoreSources);..\..\NStack\NStack\bin\Debug;https://api.nuget.org/v3/index.json</RestoreSources>-->
  28. </PropertyGroup>
  29. <!-- API Documentation -->
  30. <ItemGroup>
  31. <None Include="..\docfx\images\logo.png">
  32. <Pack>True</Pack>
  33. <PackagePath>\</PackagePath>
  34. </None>
  35. <None Include="..\README.md">
  36. <Pack>True</Pack>
  37. <PackagePath>\</PackagePath>
  38. </None>
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Update="Resources\Strings.Designer.cs">
  42. <DesignTime>True</DesignTime>
  43. <AutoGen>True</AutoGen>
  44. <DependentUpon>Strings.resx</DependentUpon>
  45. </Compile>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <EmbeddedResource Update="Resources\Strings.resx">
  49. <Generator>ResXFileCodeGenerator</Generator>
  50. <LastGenOutput>Strings.Designer.cs</LastGenOutput>
  51. </EmbeddedResource>
  52. </ItemGroup>
  53. <!-- Enable Nuget Source Link for github -->
  54. <ItemGroup>
  55. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
  56. <PackageReference Include="System.Management" Version="7.0.0" />
  57. </ItemGroup>
  58. <PropertyGroup>
  59. <TargetFrameworks>net472;netstandard2.1;net7.0</TargetFrameworks>
  60. <RootNamespace>Terminal.Gui</RootNamespace>
  61. <AssemblyName>Terminal.Gui</AssemblyName>
  62. <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
  63. <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
  64. <!--<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>-->
  65. <PackageId>Terminal.Gui</PackageId>
  66. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  67. <PackageProjectUrl>https://github.com/gui-cs/Terminal.Gui/</PackageProjectUrl>
  68. <RepositoryUrl>https://github.com/gui-cs/Terminal.Gui.git</RepositoryUrl>
  69. <RepositoryType>git</RepositoryType>
  70. <IncludeSymbols>true</IncludeSymbols>
  71. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  72. <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
  73. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  74. <!-- Embed source files that are not tracked by the source control manager in the PDB -->
  75. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  76. <PackageIcon>logo.png</PackageIcon>
  77. <PackageReadmeFile>README.md</PackageReadmeFile>
  78. <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console, tui</PackageTags>
  79. <Description>Cross platform Terminal UI toolkit for .NET</Description>
  80. <Owners>Miguel de Icaza, Charlie Kindel</Owners>
  81. <Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
  82. <Title>Terminal.Gui - Cross platform Terminal User Interface (TUI) toolkit for .NET</Title>
  83. <PackageReleaseNotes>
  84. See: https://github.com/gui-cs/Terminal.Gui/releases
  85. </PackageReleaseNotes>
  86. </PropertyGroup>
  87. </Project>