dbcd83075c
* Creating and publishing '*.symbols.nuget' to the blob feed. * Reverting 'generatenupkg' methodology. * Fixing formatting... * Overwrite should = 'false' * Second draft - Creating and publishing '*.symbols.nuget' to the blob feed. * Fixing a VS auto-update. * Removing the 'Microsoft.SymbolUploader.Build.Task' modifications; need to make a PR just for this. * Change "sdk.*.Microsoft.DotNet.SDK.*.symbols.nupkg" to "runtime.*.Microsoft.DotNet.SDK.*.symbols.nupkg"; removing the 'DotNetRestore' on the Symbols.csproj * Removing a 'todo' comment... * Putting back the 'dotnet restore' * Fixing a typo... * Logical separation of the 'nupkg' from the 'symbols.nupkg' enumeration; fixed 'swr' pattern. * Add "BLOBFEED_STORAGE_CONTAINER"
44 lines
2.3 KiB
XML
44 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Target Name="GatherNupkgsForPublishing">
|
|
<ItemGroup>
|
|
<NupkgsForPublishing Include="$(PackagesDirectory)/Microsoft.DotNet.Cli.Utils.*.nupkg"
|
|
Exclude="$(PackagesDirectory)/*.symbols.nupkg"
|
|
Condition=" '$(OS)' == 'Windows_NT' And '$(Architecture)' == 'x64' " />
|
|
<NupkgsForPublishing Include="$(PackagesDirectory)/Microsoft.DotNet.MSBuildSdkResolver.*.nupkg"
|
|
Exclude="$(PackagesDirectory)/*.symbols.nupkg"
|
|
Condition=" '$(OS)' == 'Windows_NT' And '$(Architecture)' == 'x64' " >
|
|
<ManifestArtifactData>NonShipping=true</ManifestArtifactData>
|
|
</NupkgsForPublishing>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<SymbolsNupkgsForPublishing Include="$(PackagesDirectory)/Microsoft.DotNet.MSBuildSdkResolver.*.symbols.nupkg"
|
|
Condition=" '$(OS)' == 'Windows_NT' And '$(Architecture)' == 'x64' " />
|
|
<SymbolsNupkgsForPublishing Include="$(PackagesDirectory)/runtime.*.Microsoft.DotNet.SDK.*.symbols.nupkg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AllNupkgsForPublishing Include="@(SymbolsNupkgsForPublishing);@(NupkgsForPublishing)" />
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
<Target Name="PublishNupkgToBlobFeed" DependsOnTargets="GatherNupkgsForPublishing">
|
|
<Error Condition="'$(BlobFeedCloudDropAccessToken)' == ''" Text="Missing property BlobFeedCloudDropAccessToken." />
|
|
<Error Condition="'$(BlobFeedExpectedURL)' == ''" Text="Missing property BlobFeedExpectedURL." />
|
|
|
|
<Message Text="Publish NuPkgs to Blob feed started: $(BlobFeedExpectedURL)" />
|
|
<PushToBlobFeed ExpectedFeedUrl="$(BlobFeedExpectedURL)"
|
|
AccountKey="$(BlobFeedCloudDropAccessToken)"
|
|
ItemsToPush="@(AllNupkgsForPublishing)"
|
|
ManifestBranch="$(BranchName)"
|
|
ManifestBuildId="$(FullNugetVersion)"
|
|
ManifestCommit="$(CommitHash)"
|
|
ManifestName="$(BuildName)"
|
|
ManifestBuildData="ProductVersion=$(FullNugetVersion)"
|
|
Overwrite="false"
|
|
PublishFlatContainer="false"
|
|
SkipCreateManifest="$(IsNotOrchestratedPublish)" />
|
|
</Target>
|
|
</Project>
|