-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathDirectory.Build.props
48 lines (43 loc) · 1.88 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
<Project>
<!-- Metadata -->
<PropertyGroup>
<Version>2.13-SNAPSHOT</Version>
<Company>Qameta Software</Company>
<RepositoryUrl>https://github.com/allure-framework/allure-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Common projects' properties -->
<PropertyGroup>
<LangVersion>11</LangVersion>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<IsPackable>false</IsPackable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>https://allurereport.org/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>allure</PackageTags>
<PackageReleaseNotes>https://github.com/allure-framework/allure-csharp/releases/tag/2.12.1</PackageReleaseNotes>
</PropertyGroup>
<!-- Signing properties -->
<PropertyGroup>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!-- Debug properties -->
<PropertyGroup>
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<!-- Enable SourceLink for all projects -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- Include LICENSE to all packages -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>