Terminal.Gui.csproj 4.2 KB

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