-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathGetNugetPackageMetadata.proj
More file actions
14 lines (14 loc) · 1023 Bytes
/
GetNugetPackageMetadata.proj
File metadata and controls
14 lines (14 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="versioning.props" />
<PropertyGroup>
<VersionNugetNightlyBuild>$([System.DateTime]::Now.ToString("yyyyMMddHHmm"))</VersionNugetNightlyBuild>
</PropertyGroup>
<Target Name="Build">
<Message Importance="high" Text="##vso[task.setvariable variable=VersionFullSemantic]$(VersionFullSemantic)" />
<Message Importance="high" Text="##vso[task.setvariable variable=VersionFull]$(VersionFull)" />
<Message Importance="high" Text="##vso[task.setvariable variable=VersionNuGetSemantic]$(VersionNuGetSemantic)" />
<Message Importance="high" Text="##vso[task.setvariable variable=VersionNugetNightlyBuild]$(VersionNugetNightlyBuild)" />
<Message Importance="high" Text="##vso[task.setvariable variable=OpenApiCorePackageDependency]$(OpenApiCorePackageDependency)" />
<Message Importance="high" Text="##vso[task.setvariable variable=ODataEdmPackageDependency]$(ODataEdmPackageDependency)" />
</Target>
</Project>