diff options
author | William Godbe <wigodbe@microsoft.com> | 2016-06-01 15:11:37 -0700 |
---|---|---|
committer | William Godbe <wigodbe@microsoft.com> | 2016-06-01 15:11:37 -0700 |
commit | 0ac55bad5f7e92a04b147b3d97b452eccf134af9 (patch) | |
tree | bb85d37773ea91885be6ec976d0697707e4f529c | |
parent | 4f975716f66f235d7ed45025ed29444fb297f41b (diff) | |
parent | 9729128a695195af29c305ba03f9ee993c96a58a (diff) | |
download | coreclr-0ac55bad5f7e92a04b147b3d97b452eccf134af9.tar.gz coreclr-0ac55bad5f7e92a04b147b3d97b452eccf134af9.tar.bz2 coreclr-0ac55bad5f7e92a04b147b3d97b452eccf134af9.zip |
Merge pull request #5384 from wtgodbe/publishing
Publish pkg/symbolpkg folders within Release/Debug folders
-rw-r--r-- | src/publish.proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/publish.proj b/src/publish.proj index d1a0bb4ec8..66aeb7e5e1 100644 --- a/src/publish.proj +++ b/src/publish.proj @@ -13,7 +13,7 @@ <!-- add relative blob path metadata --> <ItemGroup> <ForPublishing> - <RelativeBlobPath>$(__BuildType)/%(Filename)%(Extension)</RelativeBlobPath> + <RelativeBlobPath>$(__BuildType)/%(RecursiveDir)%(Filename)%(Extension)</RelativeBlobPath> </ForPublishing> </ItemGroup> <Error Condition="'@(ForPublishing)' == ''" Text="No items were found matching pattern '$(PublishPattern)'." /> |