1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <PropertyGroup>
- <!-- Version numbers are automatically updated by gitversion when a release is released -->
- <!-- In the source tree the version will always be 1.0 for all projects. -->
- <!-- Do not modify these. Do NOT commit after manually running `dotnet-gitversion /updateprojectfiles` -->
- <AssemblyVersion>2.0</AssemblyVersion>
- <FileVersion>2.0</FileVersion>
- <Version>2.0</Version>
- <InformationalVersion>2.0</InformationalVersion>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Resources\config.json" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Resources\config.json" />
- </ItemGroup>
- <ItemGroup>
- <!-- Enable Nuget Source Link for github -->
- <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
- <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
- <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
- <PackageReference Include="NStack.Core" Version="1.0.7" />
- <PackageReference Include="System.IO.Abstractions" Version="19.2.4" />
- <PackageReference Include="System.Text.Json" Version="7.0.1" />
- <PackageReference Include="System.Management" Version="7.0.0" />
- <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>
- <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>
- <PropertyGroup>
- <TargetFrameworks>net7.0</TargetFrameworks>
- <LangVersion>9.0</LangVersion>
- <RootNamespace>Terminal.Gui</RootNamespace>
- <AssemblyName>Terminal.Gui</AssemblyName>
- <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
- <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
- <!--<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>-->
- <PackageId>Terminal.Gui</PackageId>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <PackageProjectUrl>https://github.com/gui-cs/Terminal.Gui/</PackageProjectUrl>
- <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>
- <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, Charlie 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>
- </PropertyGroup>
- <ProjectExtensions><VisualStudio><UserProperties resources_4config_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
- </Project>
|