| 1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
- <NoWarn>CS8714</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\TerminalGuiFluentTestingXunit.Generator\TerminalGuiFluentTestingXunit.Generator.csproj" OutputItemType="Analyzer" />
- <ProjectReference Include="..\TerminalGuiFluentTesting\TerminalGuiFluentTesting.csproj" />
- <PackageReference Include="Microsoft.NET.Test.Sdk" />
- <PackageReference Include="xunit" />
- <PackageReference Include="xunit.runner.visualstudio" />
- <PackageReference Include="Microsoft.Net.Compilers.Toolset" PrivateAssets="all" />
- </ItemGroup>
- </Project>
|