2
0

Terminal.Gui.csproj 5.8 KB

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