|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <PackageType>Template</PackageType> |
5 | | - <PackageId>bunit.template</PackageId> |
6 | | - <Title>bUnit Template Projects</Title> |
7 | | - <Authors>Egil Hansen</Authors> |
8 | | - <Company>Egil Hansen</Company> |
9 | | - <Copyright>Egil Hansen</Copyright> |
10 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
11 | | - <Description>A project template for a testing Blazor/Razor components using the bUnit library.</Description> |
12 | | - <PackageDescription> |
| 3 | + <PropertyGroup> |
| 4 | + <PackageType>Template</PackageType> |
| 5 | + <PackageId>bunit.template</PackageId> |
| 6 | + <Title>bUnit Template Projects</Title> |
| 7 | + <Authors>Egil Hansen</Authors> |
| 8 | + <Company>Egil Hansen</Company> |
| 9 | + <Copyright>Egil Hansen</Copyright> |
| 10 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 11 | + <Description>A project template for a testing Blazor/Razor components using the bUnit library.</Description> |
| 12 | + <PackageDescription> |
13 | 13 | A project template for a testing Blazor/Razor components using the bUnit library. |
14 | 14 |
|
15 | 15 | 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 easily interact with and inspect components, trigger event handlers, provide cascading values, inject services, mock IJsRuntime, and perform snapshot testing. |
16 | 16 |
|
17 | 17 | The library's goal is to make it easy to write comprehensive, stable unit tests for Blazor Components/Razor Components. Go to bunit.egilhansen.com to learn more. |
18 | | - </PackageDescription> |
19 | | - <PackageTags>bUnit;razor components;blazor components;unit testing;testing blazor components;blazor server;blazor wasm</PackageTags> |
20 | | - <PackageProjectUrl>https://github.com/egil/bunit</PackageProjectUrl> |
21 | | - <TargetFramework>netstandard2.1</TargetFramework> |
22 | | - <IncludeContentInPack>true</IncludeContentInPack> |
23 | | - <IncludeBuildOutput>false</IncludeBuildOutput> |
24 | | - <ContentTargetFolders>content</ContentTargetFolders> |
25 | | - <AssemblyName>Bunit.Template</AssemblyName> |
26 | | - <RootNamespace>Bunit</RootNamespace> |
27 | | - </PropertyGroup> |
| 18 | + </PackageDescription> |
| 19 | + <PackageTags>bUnit;razor components;blazor components;unit testing;testing blazor components;blazor server;blazor wasm</PackageTags> |
| 20 | + <PackageProjectUrl>https://github.com/egil/bunit</PackageProjectUrl> |
| 21 | + <TargetFramework>netstandard2.1</TargetFramework> |
| 22 | + <IncludeContentInPack>true</IncludeContentInPack> |
| 23 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 24 | + <ContentTargetFolders>content</ContentTargetFolders> |
| 25 | + <AssemblyName>Bunit.Template</AssemblyName> |
| 26 | + <RootNamespace>Bunit</RootNamespace> |
| 27 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 28 | + <RepositoryUrl>https://github.com/egil/bunit</RepositoryUrl> |
| 29 | + <Deterministic>true</Deterministic> |
| 30 | + </PropertyGroup> |
28 | 31 |
|
29 | 32 | <ItemGroup> |
30 | 33 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.1.91"> |
31 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
32 | | - <PrivateAssets>all</PrivateAssets> |
| 34 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 35 | + <PrivateAssets>all</PrivateAssets> |
33 | 36 | </PackageReference> |
34 | 37 | </ItemGroup> |
35 | 38 |
|
36 | | - <ItemGroup> |
37 | | - <Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**;template\**\.vs\**" /> |
38 | | - <Compile Remove="**\*" /> |
39 | | - <Compile Remove="template\obj\**" /> |
40 | | - <Content Remove="template\obj\**" /> |
41 | | - <EmbeddedResource Remove="template\obj\**" /> |
42 | | - <None Remove="template\obj\**" /> |
43 | | - </ItemGroup> |
| 39 | + <ItemGroup> |
| 40 | + <Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**;template\**\.vs\**" /> |
| 41 | + <Compile Remove="**\*" /> |
| 42 | + <Compile Remove="template\obj\**" /> |
| 43 | + <Content Remove="template\obj\**" /> |
| 44 | + <EmbeddedResource Remove="template\obj\**" /> |
| 45 | + <None Remove="template\obj\**" /> |
| 46 | + </ItemGroup> |
44 | 47 |
|
45 | 48 | </Project> |
0 commit comments