File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 17
17
>
18
18
19
19
<Exec Command =' git describe --abbrev=60 --long'
20
- WorkingDirectory =$(MSBuildProjectDirectory)
20
+ WorkingDirectory =" $(MSBuildProjectDirectory)"
21
21
ConsoleToMSBuild =" true"
22
22
StandardOutputImportance =" Low" >
23
23
<Output TaskParameter =" ConsoleOutput" PropertyName =" PowerShellVersion" />
51
51
<Version >$(PSCoreBuildVersion)</Version >
52
52
<InformationalVersion >$(PSCoreFormattedVersion)</InformationalVersion >
53
53
54
- <!-- VersionPrefix>$(PSCorePrefixVersion)</VersionPrefix-->
55
- <!-- VersionSuffix>$(PSCoreLabelVersion)</VersionSuffix-->
56
-
57
54
<!--
58
55
We have explicitly assign 'PackageVersion'
59
56
because there is a bug: 'PackageVersion' is correctly assigned as 'Version' in 'NuGet.targets'
Original file line number Diff line number Diff line change @@ -1358,7 +1358,7 @@ function Publish-NuGetFeed
1358
1358
' Microsoft.PowerShell.SDK'
1359
1359
) | ForEach-Object {
1360
1360
if ($ReleaseTag ) {
1361
- dotnet pack " src/$_ " -- output $OutputPath " /property:ReleaseTag=$ReleaseTag1 " / p:IncludeSymbols = true
1361
+ dotnet pack " src/$_ " -- output $OutputPath " /property:IncludeSymbols=true; ReleaseTag=$ReleaseTag1 "
1362
1362
} else {
1363
1363
dotnet pack " src/$_ " -- output $OutputPath
1364
1364
}
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ function Invoke-AppveyorFinish
470
470
# only publish to nuget feed if it is a daily build and tests passed
471
471
if ((Test-DailyBuild ) -and $env: TestPassed -eq ' True' )
472
472
{
473
- Publish-NuGetFeed - OutputPath .\nuget- artifacts - ReleaseTag " /property:ReleaseTag= $preReleaseVersion "
473
+ Publish-NuGetFeed - OutputPath .\nuget- artifacts - ReleaseTag $preReleaseVersion
474
474
}
475
475
476
476
$nugetArtifacts = Get-ChildItem .\nuget- artifacts - ErrorAction SilentlyContinue | ForEach-Object { $_.FullName }
You can’t perform that action at this time.
0 commit comments