mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AnalysisMode>None</AnalysisMode>
|
|
<AssemblyName>Duende.Xunit.Playwright</AssemblyName>
|
|
<RootNamespace>Duende.Xunit.Playwright</RootNamespace>
|
|
<IsTestProject>false</IsTestProject>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_ncrunch|AnyCPU'">
|
|
<DefineConstants>$(DefineConstants);DEBUG_NCRUNCH</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AppHost.Abstractions\AppHost.Abstractions.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="AngleSharp" />
|
|
<PackageReference Include="Aspire.Hosting.Testing" />
|
|
<PackageReference Include="Microsoft.Playwright.Xunit.v3" />
|
|
<PackageReference Include="Serilog" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
<PackageReference Include="Serilog.Extensions.Logging" />
|
|
<PackageReference Include="Serilog.Sinks.TextWriter" />
|
|
<PackageReference Include="Shouldly" />
|
|
<PackageReference Include="xunit.v3.extensibility.core" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.Extensions.DependencyInjection" />
|
|
<Using Include="System.Net" />
|
|
<Using Include="Shouldly" />
|
|
<Using Include="Xunit" />
|
|
<Using Include="Aspire.Hosting.ApplicationModel" />
|
|
<Using Include="Aspire.Hosting.Testing" />
|
|
</ItemGroup>
|
|
</Project>
|