Skip to content

Commit

Permalink
Fix attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
eliezerpMS committed Nov 10, 2020
1 parent e5965b4 commit d27f177
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ jobs:
# flattenFolders: false

# Copy the Project Reunion full package specific target files into the full package folder
- task: PowerShell@2
displayName: 'Copy Project Reunion full package targets'
inputs:
targetType: 'inline'
script: |
- task: PowerShell@2
displayName: 'Copy Project Reunion full package targets'
inputs:
targetType: 'inline'
script: |
$targetsFilePath = "$(Build.SourcesDirectory)/build/NuSpecs"
$fullpackagePath = "${{ parameters.fullnupkgdir }}"
$targetsFilePath = "$(Build.SourcesDirectory)\build\NuSpecs"
Copy-Item -Path "$targetsFilePath\ProjectReunion-Nuget-Native.targets" -Destination "$fullpackagePath\build\native\Microsoft.ProjectReunion.Foundation.targets"
Copy-Item -Path "$targetsFilePath\ProjectReunion-Nuget-Common.targets" -Destination "$fullpackagePath\build\Microsoft.ProjectReunion.targets"
Copy-Item -Path "$targetsFilePath/ProjectReunion-Nuget-Native.targets" -Destination "$fullpackagePath/build/native/Microsoft.ProjectReunion.Foundation.targets"
Copy-Item -Path "$targetsFilePath/ProjectReunion-Nuget-Common.targets" -Destination "$fullpackagePath/build/Microsoft.ProjectReunion.targets"
# Extract framework package from full nuget package
- task: CopyFiles@2
Expand Down

0 comments on commit d27f177

Please sign in to comment.