Skip to content

Commit

Permalink
build(pwsh): fix powershell/build.ps1 output path (#395)
Browse files Browse the repository at this point in the history
Co-authored-by: Marc-André Moreau <mamoreau@devolutions.net>
  • Loading branch information
awakecoding and Marc-André Moreau authored Mar 4, 2023
1 parent 8546e0e commit e7b5968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion powershell/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $Env:NUGET_CERT_REVOCATION_MODE='offline'

& dotnet restore "$PSScriptRoot\$ModuleName\src" 2>&1>$null

& dotnet publish "$PSScriptRoot\$ModuleName\src" -f netstandard2.0 -c Release -o "$PSScriptRoot\$ModuleName\bin"
& dotnet publish "$PSScriptRoot\$ModuleName\src\$ModuleName.csproj" -f netstandard2.0 -c Release -o "$PSScriptRoot\$ModuleName\bin"

Copy-Item "$PSScriptRoot\$ModuleName\bin" -Destination "$PSModuleOutputPath\$ModuleName" -Recurse -Force

Expand Down

0 comments on commit e7b5968

Please sign in to comment.