-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
64 lines (59 loc) · 2.27 KB
/
Copy pathDirectory.Build.props
File metadata and controls
64 lines (59 loc) · 2.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project>
<!-- Common metadata -->
<PropertyGroup>
<Version>3.0-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>net10.0</TargetFramework>
<LangVersion>14</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>
<PropertyGroup>
<_Allure_RepoRoot>$(MSBuildThisFileDirectory)</_Allure_RepoRoot>
<_Allure_BuildTaskProjectName>Allure.Build.Tasks</_Allure_BuildTaskProjectName>
<_Allure_BuildTaskProjectDir>$(
[MSBuild]::NormalizeDirectory(
'$(_Allure_RepoRoot)',
'build',
'$(_Allure_BuildTaskProjectName)'
)
)</_Allure_BuildTaskProjectDir>
<_Allure_BinDirectory>$(
[MSBuild]::NormalizePath(
'$(ArtifactsPath)',
'bin'
)
)</_Allure_BinDirectory>
<_Allure_BuildTaskAssemblyPath>$(
[MSBuild]::NormalizePath(
'$(_Allure_BinDirectory)',
'$(_Allure_BuildTaskProjectName)',
'release',
'$(_Allure_BuildTaskProjectName).dll'
)
)</_Allure_BuildTaskAssemblyPath>
<_Allure_ObjDirectory>$(
[MSBuild]::NormalizePath(
'$(ArtifactsPath)',
'obj'
)
)</_Allure_ObjDirectory>
</PropertyGroup>
</Project>