-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Directory.Build.props
69 lines (60 loc) · 2.79 KB
/
Directory.Build.props
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
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
Add any shared properties you want for the projects under this directory that need to be set before the auto imported Directory.Build.props
-->
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />
<PropertyGroup Label="Build instructions">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<OutputType>Library</OutputType>
<!-- Creates a regular package and a symbols package -->
<IncludeSymbols>true</IncludeSymbols>
<!-- Creates symbol package in the new .snupkg format -->
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!--
Instruct the build system to embed project source files that are not tracked by the source control
or imported from a source package to the generated PDB.
-->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Label="Package Validation" Condition="$(MSBuildProjectName) != 'bunit.generators'">
<EnablePackageValidation>true</EnablePackageValidation>
<GenerateCompatibilitySuppressionFile>true</GenerateCompatibilitySuppressionFile>
<PackageValidationBaselineVersion>1.25.3</PackageValidationBaselineVersion>
</PropertyGroup>
<PropertyGroup Label="NuGet package information">
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/bUnit-dev/bUnit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://bunit.egilhansen.com</PackageProjectUrl>
<PackageTags>bUnit;razor components;blazor components;unit testing;testing blazor components;blazor server;blazor wasm</PackageTags>
<Authors>Egil Hansen</Authors>
<Company>Egil Hansen</Company>
<Copyright>Egil Hansen</Copyright>
<Product>bUnit</Product>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>bunit-logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
Changes in bUnit #{RELEASE_VERSION}#
#{RELEASE_NOTES}#
See the full changelog at https://github.com/bUnit-dev/bUnit/releases
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\bunit-logo.png" Pack="true" PackagePath="" Visible="false" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>