-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (28 loc) · 1.18 KB
/
Directory.Build.props
File metadata and controls
31 lines (28 loc) · 1.18 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
<Project>
<!-- Common metadata -->
<PropertyGroup>
<Version>2.15-SNAPSHOT</Version>
<Company>Qameta Software</Company>
<RepositoryUrl>https://github.com/allure-framework/allure-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Common packaging properties -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<WarnOnPackingNonPackableProject>true</WarnOnPackingNonPackableProject>
</PropertyGroup>
<!-- Common build properties -->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12</LangVersion>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<UseArtifactsOutput>true</UseArtifactsOutput>
<ArtifactsPath>$([MSBuild]::NormalizeDirectory('$(MSBuildThisFileDirectory)', 'artifacts'))</ArtifactsPath>
</PropertyGroup>
<!-- Signing properties -->
<PropertyGroup>
<!-- Signing is opt-in -->
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)', 'build', 'identity.snk'))</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>