123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <Project Sdk="Microsoft.NET.Sdk" InitialTargets="main">
- <!-- =================================================================== -->
- <!-- Version numbers -->
- <!-- Automatically updated by gitversion (run `dotnet-gitversion /updateprojectfiles`) -->
- <!-- =================================================================== -->
- <PropertyGroup>
- <VersionPrefix>1.14.0</VersionPrefix>
- <AssemblyVersion>1.14.0.0</AssemblyVersion>
- <FileVersion>1.14.0.0</FileVersion>
- <InformationalVersion>1.14.0-v1-develop-branching-update.113+Branch.v1-develop-branching-update.Sha.a36b5c45a68b3d89f4a920cd6ad775ed40cdc51d</InformationalVersion>
- <PackageVersion>$(Version)</PackageVersion>
- <Version>1.14.0-v1-develop-branc0113</Version>
- </PropertyGroup>
- <!-- =================================================================== -->
- <!-- Enables printing of version info during build -->
- <!-- =================================================================== -->
- <Target Name="main" AfterTargets="Resources">
- <!-- Msbuild will process the first target in the file by default.
- By creating this target, and making it depend on the two following targets,
- we can ensure that they will all be executed
- -->
- </Target>
- <Target Name="main">
- <Message Text="Built Terminal.Gui $(Version)" Importance="high" />
- </Target>
- <!-- =================================================================== -->
- <!-- .NET Build Settings -->
- <!-- =================================================================== -->
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>portable</DebugType>
- <VersionSuffix></VersionSuffix>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
- <DebugType>portable</DebugType>
- <VersionSuffix>pre.$([System.DateTime]::UtcNow.ToString("yyyyMMdd.HHmm"))</VersionSuffix>
- </PropertyGroup>
- <PropertyGroup>
- <TargetFrameworks>net472;netstandard2.1;net7.0</TargetFrameworks>
- <RootNamespace>Terminal.Gui</RootNamespace>
- <AssemblyName>Terminal.Gui</AssemblyName>
- </PropertyGroup>
- <!-- =================================================================== -->
- <!-- Dependencies -->
- <!-- =================================================================== -->
- <ItemGroup>
- <PackageReference Include="NStack.Core" Version="1.0.7" />
- <InternalsVisibleTo Include="UnitTests" />
- </ItemGroup>
- <!-- Uncomment the RestoreSources element to have dotnet restore pull NStack from a local dir for testing -->
- <PropertyGroup>
- <!-- See https://stackoverflow.com/a/44463578/297526 -->
- <!--<RestoreSources>$(RestoreSources);..\..\NStack\NStack\bin\Debug;https://api.nuget.org/v3/index.json</RestoreSources>-->
- </PropertyGroup>
- <!-- =================================================================== -->
- <!-- API Documentation -->
- <!-- =================================================================== -->
- <ItemGroup>
- <None Include="..\docfx\images\logo.png">
- <Pack>True</Pack>
- <PackagePath>\</PackagePath>
- </None>
- <None Include="..\README.md">
- <Pack>True</Pack>
- <PackagePath>\</PackagePath>
- </None>
- </ItemGroup>
- <!-- =================================================================== -->
- <!-- i18 -->
- <!-- =================================================================== -->
- <ItemGroup>
- <Compile Update="Resources\Strings.Designer.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>Strings.resx</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="Resources\Strings.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Strings.Designer.cs</LastGenOutput>
- </EmbeddedResource>
- </ItemGroup>
- <!-- =================================================================== -->
- <!-- Nuget -->
- <!-- =================================================================== -->
- <PropertyGroup>
- <PackageId>Terminal.Gui</PackageId>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <PackageProjectUrl>https://github.com/gui-cs/Terminal.Gui/</PackageProjectUrl>
- <PackageIcon>logo.png</PackageIcon>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console, tui</PackageTags>
- <Description>Cross platform Terminal UI toolkit for .NET</Description>
- <Owners>Miguel de Icaza, Tig Kindel</Owners>
- <Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
- <Title>Terminal.Gui - Cross platform Terminal User Interface (TUI) toolkit for .NET</Title>
- <PackageReleaseNotes>
- See: https://github.com/gui-cs/Terminal.Gui/releases
- </PackageReleaseNotes>
- <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
- <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Debug' ">true</GeneratePackageOnBuild>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <RepositoryUrl>https://github.com/gui-cs/Terminal.Gui.git</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <IncludeSymbols>true</IncludeSymbols>
- <SymbolPackageFormat>snupkg</SymbolPackageFormat>
- <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
- <PublishRepositoryUrl>true</PublishRepositoryUrl>
- <!-- Embed source files that are not tracked by the source control manager in the PDB -->
- <EmbedUntrackedSources>true</EmbedUntrackedSources>
- </PropertyGroup>
- <ItemGroup>
- <!-- Enable Nuget Source Link for github -->
- <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
- <PackageReference Include="System.Management" Version="7.0.2" />
- </ItemGroup>
- </Project>
|