8000 add ability to package all of powershell core as a NuGet Package by TravisEz13 · Pull Request #4363 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

add ability to package all of powershell core as a NuGet Package #4363

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 20 commits into from
Aug 1, 2017
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
change folder in nupkg with PowerShell from tools to content
  • Loading branch information
TravisEz13 committed Jul 28, 2017
commit 79764943d60e55db2f52c92bf3d4fa1b12be6ebb
4 changes: 2 additions & 2 deletions tools/packaging/packaging.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -653,9 +653,9 @@ function New-NugetPackage

# Setup staging directory so we don't change the original source directory
$stagingRoot = New-SubFolder -Path $PSScriptRoot -ChildPath 'nugetStaging' -Clean
$toolsFolder = Join-Path -path $stagingRoot -ChildPath 'tools'
$contentFolder = Join-Path -path $stagingRoot -ChildPath 'content'
if ($pscmdlet.ShouldProcess("Create staging folder")) {
New-StagingFolder -StagingPath $toolsFolder -Name $Name
New-StagingFolder -StagingPath $contentFolder -Name $Name
}

$projectFolder = Join-Path $PSScriptRoot -ChildPath 'project'
Expand Down
0