-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (43 loc) · 1.89 KB
/
Directory.Build.props
File metadata and controls
50 lines (43 loc) · 1.89 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
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"
Condition="'' != $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<!-- Force public packages declare TFM explicitly -->
<TargetFramework></TargetFramework>
</PropertyGroup>
<!-- Packaging properties -->
<PropertyGroup>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>https://allurereport.org/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>allure</PackageTags>
</PropertyGroup>
<!-- XML documentation properties -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
<!-- Package debug data properties -->
<PropertyGroup>
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<!-- Sign all packages -->
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<!-- Enable SourceLink for all packages -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- Include LICENSE to all packages -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$([MSBuild]::GetPathOfFileAbove('LICENSE', '$(MSBuildThisFileDirectory)../'))" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>