-
Notifications
You must be signed in to change notification settings - Fork 51
/
CommonProperties.xml
48 lines (41 loc) · 1.94 KB
/
CommonProperties.xml
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>
<!-- Properties common to all packaged projects (production and testing)
- This does not apply to test and tool projects, hence
- why it's imported rather than being in Directory.Build.props etc.
-->
<!-- Build information -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyOriginatorKeyFile>../Gax.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
<!-- Packaging information -->
<Copyright>Copyright 2020 Google LLC</Copyright>
<Authors>Google LLC</Authors>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/googleapis/gax-dotnet</PackageProjectUrl>
<PackageTags>Google</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/googleapis/gax-dotnet</RepositoryUrl>
<PackageIconUrl>https://www.gstatic.com/images/branding/product/1x/google_developers_64dp.png</PackageIconUrl>
<PackageIcon>NuGetIcon.png</PackageIcon>
<!-- Properties to get SourceLink to work -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<!--
- Note: not PackagePage="$(PackageLicenseFile)" as
- suggested in docs, due to us using a file with no extension.
-->
<None Include="../LICENSE" Pack="true" PackagePath="" />
<None Include="../NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Common references -->
<ItemGroup>
<PackageReference Include="ConfigureAwaitChecker.Analyzer" PrivateAssets="All" />
</ItemGroup>
<Import Project="ReleaseVersion.xml" />
</Project>