-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
46 lines (38 loc) · 2.3 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
<Project>
<PropertyGroup>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<LangVersion>11.0</LangVersion>
<GitHubOrganization>NightOwl888</GitHubOrganization>
<GitHubProject>RandomizedTesting</GitHubProject>
</PropertyGroup>
<PropertyGroup Label="Assembly Signing">
<AssemblyOriginatorKeyFile>$(RepositoryRoot).build/key.snk</AssemblyOriginatorKeyFile>
<PublicKey>002400000480000094000000060200000024000052534131000400000100010059f80378127200f02ed976f6cf17d3359bac999bd9ec8388c11a54a5e98601069b437168c12af08b8a728b41b7e4aece1867c158f0d672a2c6e41773ab0853b515ee27634e3e87dbdc8550bc66b44002e5baceab54db20065714c85e81ffd7b31deb0f76eee0bfef9d1ccdd3dab5980d85724da66c0e4567b1f3c87834ac44bf</PublicKey>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup Label="Assembly Publishing">
<IsPublishable>false</IsPublishable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Label="NuGet Package Defaults">
<IsPackable>false</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<!-- This is the new symbols format (the only one currently supported at NuGet.org) -->
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Label="Copyright Info">
<Company>$(GitHubProject)</Company>
<CurrentYear Condition=" '$(CurrentYear)' == '' ">$([System.DateTime]::UtcNow.Year.ToString())</CurrentYear>
<BeginCopyrightYear>2021</BeginCopyrightYear>
<CopyrightYearRange>$(BeginCopyrightYear) - $(CurrentYear)</CopyrightYearRange>
<CopyrightYearRange Condition=" '$(BeginCopyrightYear)' == '$(CurrentYear)' ">$(CurrentYear)</CopyrightYearRange>
<Copyright>Copyright © $(CopyrightYearRange) $(Company)</Copyright>
</PropertyGroup>
<PropertyGroup Label="SourceLink Settings: https://github.com/dotnet/sourcelink/blob/main/README.md">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup Condition=" '$(BUILD_REPOSITORY_PROVIDER)' == 'GitHub' Or '$(BUILD_REPOSITORY_PROVIDER)' == 'TfsGit' " Label="Deterministic builds: https://github.com/clairernovotny/DeterministicBuilds#readme">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>