forked from googleapis/gapic-generator-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotnetToolProperties.xml
28 lines (23 loc) · 1.37 KB
/
DotnetToolProperties.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
<Project>
<!-- Properties common to all projects which are published to NuGet as dotnet tools. -->
<PropertyGroup>
<!-- Make the repository root available for other properties -->
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Authors>Google LLC</Authors>
<Copyright>Copyright $([System.DateTime]::UtcNow.ToString(yyyy)) Google LLC</Copyright>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageIconUrl>https://cloud.google.com/images/gcp-icon-64x64.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/googleapis/gapic-generator-csharp</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/googleapis/gapic-generator-csharp</RepositoryUrl>
<PackAsTool>true</PackAsTool>
</PropertyGroup>
<ItemGroup>
<None Include="$(RepoRoot)/LICENSE" Pack="true" PackagePath="" />
<None Include="$(RepoRoot)/NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>