-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathbunit.web.query.csproj
More file actions
34 lines (28 loc) · 940 Bytes
/
bunit.web.query.csproj
File metadata and controls
34 lines (28 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0;net11.0</TargetFrameworks>
<RootNamespace>Bunit</RootNamespace>
<AssemblyName>Bunit.Web.Query</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<PackageId>bunit.web.query</PackageId>
<Title>bunit.web.query</Title>
<Description>
bunit.web.query is an experimental package that provides an bUnit version of the https://testing-library.com/ APIs.
</Description>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.AspNetCore.Components" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\bunit\bunit.csproj" />
</ItemGroup>
</Project>