|
8 | 8 | <UsingTask TaskName="UploadToAzure" AssemblyFile="$(BuildToolsTaskDir)Microsoft.DotNet.Build.CloudTestTasks.dll"/> |
9 | 9 |
|
10 | 10 | <PropertyGroup> |
11 | | - <PackagesPattern Condition="'$(PackagesPattern)' == ''">$(PackagesBinDir)pkg\*.nupkg</PackagesPattern> |
| 11 | + <PackagesPatternDir Condition="'$(PackagesPatternDir)' == ''">$(PackagesBinDir)</PackagesPatternDir> |
| 12 | + <PackagesPattern Condition="'$(PackagesPattern)' == ''">$(PackagesPatternDir)pkg\*.nupkg</PackagesPattern> |
| 13 | + <TransportPackagesPattern Condition="'$(TransportPackagesPattern)' == ''">$(PackagesPatternDir)pkg\transport.*.nupkg</TransportPackagesPattern> |
12 | 14 | <TestNativeBinariesPattern Condition="'$(TestNativeBinariesPattern)' == ''">$(OutputPath)\bin\**</TestNativeBinariesPattern> |
13 | | - <SymbolsPackagesPattern Condition="'$(SymbolPackagesPattern)' == ''">$(PackagesBinDir)symbolpkg\*.nupkg</SymbolsPackagesPattern> |
| 15 | + <SymbolsPackagesPattern Condition="'$(SymbolPackagesPattern)' == ''">$(PackagesPatternDir)symbolpkg\*.nupkg</SymbolsPackagesPattern> |
14 | 16 | <PublishFlatContainer Condition="'$(PublishFlatContainer)' == ''">true</PublishFlatContainer> |
15 | 17 | <RelativePathWithSlash>$(RelativePath)</RelativePathWithSlash> |
16 | 18 | <RelativePathWithSlash Condition="'$(RelativePathWithSlash)' != '' and !HasTrailingSlash('$(RelativePathWithSlash)')">$(RelativePathWithSlash)/</RelativePathWithSlash> |
|
28 | 30 | </PropertyGroup> |
29 | 31 | <ItemGroup> |
30 | 32 | <ItemsToPush Remove="*.nupkg" /> |
31 | | - <ItemsToPush Include="$(PackagesPattern)" Exclude="$(SymbolsPackagesPattern)"/> |
| 33 | + <ItemsToPush Include="$(TransportPackagesPattern)"> |
| 34 | + <ManifestArtifactData>NonShipping=true</ManifestArtifactData> |
| 35 | + </ItemsToPush> |
| 36 | + <ItemsToPush Include="$(PackagesPattern)" Exclude="@(ItemsToPush);$(SymbolsPackagesPattern)" /> |
32 | 37 | <ItemsToPush> |
33 | 38 | <RelativeBlobPath>$(RelativePathWithSlash)$([System.String]::Copy('%(RecursiveDir)%(Filename)%(Extension)').Replace('\' ,'/'))</RelativeBlobPath> |
34 | 39 | </ItemsToPush> |
|
44 | 49 | ExpectedFeedUrl="$(ExpectedFeedUrl)" |
45 | 50 | AccountKey="$(AccountKey)" |
46 | 51 | ItemsToPush="@(ItemsToPush)" |
47 | | - Overwrite="$(OverwriteOnPublish)" /> |
| 52 | + Overwrite="$(OverwriteOnPublish)" |
| 53 | + ManifestName="$(GitHubRepositoryName)" |
| 54 | + ManifestBuildId="$(ManifestBuildId)" |
| 55 | + ManifestBranch="$(ManifestBranch)" |
| 56 | + ManifestCommit="$(ManifestCommit)" /> |
48 | 57 |
|
49 | 58 | <!-- now upload the items --> |
50 | 59 | <UploadToAzure Condition="'$(PublishFlatContainer)' == 'true'" |
|
77 | 86 | ExpectedFeedUrl="$(ExpectedFeedUrl)" |
78 | 87 | AccountKey="$(AccountKey)" |
79 | 88 | ItemsToPush="@(ItemsToPush)" |
80 | | - Overwrite="$(OverwriteOnPublish)" /> |
| 89 | + Overwrite="$(OverwriteOnPublish)" |
| 90 | + ManifestName="$(GitHubRepositoryName)" |
| 91 | + ManifestBuildId="$(ManifestBuildId)" |
| 92 | + ManifestBranch="$(ManifestBranch)" |
| 93 | + ManifestCommit="$(ManifestCommit)" /> |
81 | 94 |
|
82 | 95 | <!-- now upload the items --> |
83 | 96 | <UploadToAzure Condition="'$(PublishFlatContainer)' == 'true'" |
|
0 commit comments