Skip to content

Include commit link in nupkgdesc #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<copyright>&#169; Microsoft Corporation. All rights reserved.</copyright>
<description>Replacement CodeDOM providers that use the new .NET Compiler Platform ("Roslyn") compiler as a service APIs. This provides support for new language features in systems using CodeDOM (e.g. ASP.NET runtime compilation) as well as improving the compilation performance of these systems.</description>
<description>Replacement CodeDOM providers that use the new .NET Compiler Platform ("Roslyn") compiler as a service APIs. This provides support for new language features in systems using CodeDOM (e.g. ASP.NET runtime compilation) as well as improving the compilation performance of these systems.

This package was built from the source at $GitCommitLink$
</description>
<summary>Replacement CodeDOM providers that use the new .NET Compiler Platform ("Roslyn") compiler as a service APIs.</summary>
<language>en-US</language>
<projectUrl>http://www.asp.net/</projectUrl>
Expand Down
2 changes: 2 additions & 0 deletions tools/RoslynCodeProvider.targets
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- Build order -->
<PropertyGroup>
<BuildDependsOn>SetNuSpecProperties;DownloadRoslynBinariesToToolsFolder;$(BuildDependsOn)</BuildDependsOn>
<GitCommitLink Condition=" '$(GitCommitLink)' == '' "></GitCommitLink>
</PropertyGroup>

<Import Project="$(MSBuildThisFileDirectory)version.targets"/>
Expand All @@ -23,6 +24,7 @@
<NuSpecProperties>
NuGetPackageVersion=$(NuGetPackageVersion);
NuGetPackageId=$(NuGetPackageId);
GitCommitLink=$(GitCommitLink);
</NuSpecProperties>
</PropertyGroup>
</Target>
Expand Down