Skip to content

Commit 499a706

Browse files
committed
Merge branch 'hotfix/0.10.7'
2 parents 6ce332b + 0d1d155 commit 499a706

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

src/nbuildkit/actions/deploy/deploy.pushto.symbolserver.msbuild

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
Project="$(FileImports)" />
2020

2121
<Target
22+
Condition=" '@(SymbolPackagesToPush)' != '' "
2223
Name="nBuildKit_Deploy_PushTo_SymbolServer_Run">
2324
<CallTarget
2425
Condition=" '$(NuGetSymbolSourceUrl)' != '' AND '$(NuGetSymbolSourceUrl)' != 'UNDEFINED' "

src/nbuildkit/actions/shared.prepare.copy.archive.msbuild

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
<Target
2222
Condition=" '@(ArchiveFilesToCopy)' != '' "
23+
Inputs="%(ArchiveFilesToCopy.Identity)"
2324
Name="nBuildKit_Shared_Prepare_Copy_FromArchive"
2425
Outputs="%(ArchiveFilesToCopy.Destination)">
2526

src/nbuildkit/actions/shared.prepare.copy.file.msbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Target
1818
Condition=" '@(FilesToCopy)' != '' "
1919
Name="nBuildKit_Shared_Prepare_Copy_FromFileSystem"
20-
Outputs="%(FilesToCopy.Destination)">
20+
Outputs="%(FilesToCopy.Destination)\%(RecursiveDir)%(Filename)%(Extension)">
2121
<PropertyGroup>
2222
<DestinationPath>%(FilesToCopy.Destination)</DestinationPath>
2323
</PropertyGroup>

src/nbuildkit/actions/shared.prepare.copy.http.msbuild

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
<Target
2222
Condition=" '@(HttpFilesToCopy)' != '' "
23+
Inputs="%(HttpFilesToCopy.Identity)"
2324
Name="nBuildKit_Shared_Prepare_Copy_FromUrl"
2425
Outputs="%(HttpFilesToCopy.Destination)">
2526

0 commit comments

Comments
 (0)