-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathbunit.csproj
More file actions
56 lines (48 loc) · 2.04 KB
/
bunit.csproj
File metadata and controls
56 lines (48 loc) · 2.04 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0;net11.0</TargetFrameworks>
<RootNamespace>Bunit</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<PackageId>bunit</PackageId>
<Title>bUnit</Title>
<Description>
bUnit is a testing library for Blazor components.
You can easily define components under test in C# or Razor syntax and verify outcome
using semantic HTML diffing/comparison logic.
You can interact with and inspect the component under test, trigger event handlers,
provide cascading values, and inject services.
bUnit also includes a complete fake implementation of Blazor's authentication and
authorization logic, navigation manager, and
JSInterop.
</Description>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AngleSharp" />
<PackageReference Include="AngleSharp.Diffing" />
<PackageReference Include="AngleSharp.Css" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.AspNetCore.Components" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" />
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\bunit.generators.internal\bunit.generators.internal.csproj"
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup Label="Implicit usings">
<Using Include="Microsoft.AspNetCore.Components.Web" />
<Using Include="Microsoft.JSInterop" />
</ItemGroup>
</Project>