-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathbunit.template.csproj
More file actions
44 lines (38 loc) · 1.39 KB
/
bunit.template.csproj
File metadata and controls
44 lines (38 loc) · 1.39 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>Bunit.Template</AssemblyName>
<RootNamespace>Bunit</RootNamespace>
<IncludeSymbols>false</IncludeSymbols>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
</PropertyGroup>
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>bunit.template</PackageId>
<Title>bUnit Template Projects</Title>
<Description>A project template for a testing Blazor/Razor components using the bUnit library.</Description>
<PackageDescription>
A project template for a testing Blazor/Razor components using the bUnit library.
</PackageDescription>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**;template\**\.vs\**" />
<Compile Remove="**\*" />
<Compile Remove="template\obj\**" />
<Content Remove="template\obj\**" />
<EmbeddedResource Remove="template\obj\**" />
<None Remove="template\obj\**" />
</ItemGroup>
<ItemGroup>
<None Remove="template\CounterRazorTests.razor" />
</ItemGroup>
</Project>