forked from dotnet/corefx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[master] Update dependencies from dotnet/arcade (dotnet#36656)
* Update dependencies from https://github.com/dotnet/arcade build 20190405.6 - Microsoft.DotNet.XUnitExtensions - 2.4.0-beta.19205.6 - Microsoft.DotNet.XUnitConsoleRunner - 2.5.1-beta.19205.6 - Microsoft.DotNet.VersionTools.Tasks - 1.0.0-beta.19205.6 - Microsoft.DotNet.ApiCompat - 1.0.0-beta.19205.6 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19205.6 - Microsoft.DotNet.Build.Tasks.Configuration - 1.0.0-beta.19205.6 - Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19205.6 - Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19205.6 - Microsoft.DotNet.CodeAnalysis - 1.0.0-beta.19205.6 - Microsoft.DotNet.CoreFxTesting - 1.0.0-beta.19205.6 - Microsoft.DotNet.GenAPI - 1.0.0-beta.19205.6 - Microsoft.DotNet.GenFacades - 1.0.0-beta.19205.6 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19205.6 - Microsoft.DotNet.RemoteExecutor - 1.0.0-beta.19205.6 - Microsoft.DotNet.SourceRewriter - 1.0.0-beta.19205.6 * correcting version number metadata
- Loading branch information
1 parent
dd21cf7
commit 81fe624
Showing
8 changed files
with
153 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!-- | ||
This MSBuild file is intended to be used as the body of the default | ||
publishing release pipeline. The release pipeline will use this file | ||
to invoke the PublishSymbols tasks to publish symbols to MSDL and SymWeb. | ||
Parameters: | ||
- PDBArtifactsDirectory : Full path to directory containing PDB files to be published. | ||
- BlobBasePath : Full path containing *.symbols.nupkg packages to be published. | ||
- DotNetSymbolServerTokenMsdl : PAT to access MSDL. | ||
- DotNetSymbolServerTokenSymWeb : PAT to access SymWeb. | ||
- DotNetSymbolExpirationInDays : Expiration days for published packages. Default is 3650. | ||
--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(NuGetPackageRoot)microsoft.symboluploader.build.task\$(SymbolUploaderVersion)\build\PublishSymbols.targets" /> | ||
|
||
<Target Name="PublishSymbols"> | ||
<ItemGroup> | ||
<FilesToPublishToSymbolServer Include="$(PDBArtifactsDirectory)\*.pdb"/> | ||
<PackagesToPublishToSymbolServer Include="$(BlobBasePath)\*.symbols.nupkg"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<DotNetSymbolExpirationInDays Condition="'$(DotNetSymbolExpirationInDays)' == ''">3650</DotNetSymbolExpirationInDays> | ||
<PublishToSymbolServer>true</PublishToSymbolServer> | ||
<PublishToSymbolServer Condition="'@(FilesToPublishToSymbolServer)' == '' and '@(PackagesToPublishToSymbolServer)' == ''">false</PublishToSymbolServer> | ||
</PropertyGroup> | ||
|
||
<Message | ||
Importance="High" | ||
Text="No symbol package(s) were found to publish." | ||
Condition="$(PublishToSymbolServer) == false" /> | ||
|
||
<!-- Symbol Uploader: MSDL --> | ||
<Message Importance="High" Text="Publishing symbol packages to MSDL ..." Condition="$(PublishToSymbolServer)" /> | ||
<PublishSymbols PackagesToPublish="@(PackagesToPublishToSymbolServer)" | ||
FilesToPublish="@(FilesToPublishToSymbolServer)" | ||
PersonalAccessToken="$(DotNetSymbolServerTokenMsdl)" | ||
SymbolServerPath="https://microsoftpublicsymbols.artifacts.visualstudio.com/DefaultCollection" | ||
ExpirationInDays="$(DotNetSymbolExpirationInDays)" | ||
VerboseLogging="true" | ||
DryRun="false" | ||
ConvertPortablePdbsToWindowsPdbs="false" | ||
PdbConversionTreatAsWarning="" | ||
Condition="$(PublishToSymbolServer)"/> | ||
|
||
<!-- | ||
Symbol Uploader: SymWeb | ||
Watson, VS insertion testings and the typical internal dev usage require SymWeb. | ||
Currently we need to call the task twice (https://github.com/dotnet/core-eng/issues/3489). | ||
--> | ||
<Message Importance="High" Text="Publishing symbol packages to SymWeb ..." Condition="$(PublishToSymbolServer)" /> | ||
<PublishSymbols PackagesToPublish="@(PackagesToPublishToSymbolServer)" | ||
FilesToPublish="@(FilesToPublishToSymbolServer)" | ||
PersonalAccessToken="$(DotNetSymbolServerTokenSymWeb)" | ||
SymbolServerPath="https://microsoft.artifacts.visualstudio.com/DefaultCollection" | ||
ExpirationInDays="$(DotNetSymbolExpirationInDays)" | ||
VerboseLogging="true" | ||
DryRun="false" | ||
ConvertPortablePdbsToWindowsPdbs="false" | ||
PdbConversionTreatAsWarning="" | ||
Condition="$(PublishToSymbolServer)"/> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SymbolUploader.Build.Task" Version="$(SymbolUploaderVersion)" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters