123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <!-- Version numbers are automatically updated by gitversion when a release is released -->
- <!-- In the source tree the version will always be 2.0 for all projects. -->
- <!-- Do not modify these. -->
- <AssemblyVersion>2.0</AssemblyVersion>
- <FileVersion>2.0</FileVersion>
- <Version>2.0</Version>
- <InformationalVersion>2.0</InformationalVersion>
- </PropertyGroup>
- <PropertyGroup>
- <IsPackable>false</IsPackable>
- <UseDataCollector />
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineTrace>true</DefineTrace>
- <DebugType>portable</DebugType>
- <DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS;CONTRACTS_FULL</DefineConstants>
- <ImplicitUsings>enable</ImplicitUsings>
- <NoLogo>true</NoLogo>
- <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Debug'">
- <DefineDebug>true</DefineDebug>
- <DefineConstants>$(DefineConstants);DEBUG_IDISPOSABLE</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)'=='Release'">
- <Optimize>true</Optimize>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="JetBrains.Annotations" PrivateAssets="all" />
- <PackageReference Include="Microsoft.NET.Test.Sdk" />
- <PackageReference Include="Moq" />
- <PackageReference Include="ReportGenerator" />
- <PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" />
- <PackageReference Include="xunit" />
- <PackageReference Include="Xunit.Combinatorial" />
- <PackageReference Include="xunit.runner.visualstudio">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="coverlet.collector">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Terminal.Gui\Terminal.Gui.csproj" />
- <ProjectReference Include="..\..\TerminalGuiFluentTesting\TerminalGuiFluentTesting.csproj" />
- <ProjectReference Include="..\..\UICatalog\UICatalog.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="xunit.runner.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Using Include="System.Drawing" />
- <Using Include="Terminal.Gui" />
- <Using Include="Xunit" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Input\Keyboard\" />
- <Folder Include="Input\Mouse\" />
- </ItemGroup>
- <PropertyGroup Label="FineCodeCoverage">
- <Enabled>
- False
- </Enabled>
- <Exclude>
- [UICatalog]*
- </Exclude>
- <Include></Include>
- <ExcludeByFile>
- <!--**/Migrations/*
- **/Hacks/*.cs-->
- </ExcludeByFile>
- <ExcludeByAttribute>
- <!--MyCustomExcludeFromCodeCoverage-->
- </ExcludeByAttribute>
- <IncludeTestAssembly>
- False
- </IncludeTestAssembly>
- </PropertyGroup>
- </Project>
|