278b3189d9
Add CompilerGenerated attribute to the tracker
36 lines
889 B
YAML
36 lines
889 B
YAML
pool:
|
|
vmImage: 'windows-2019'
|
|
|
|
steps:
|
|
- task: UseDotNet@2
|
|
inputs:
|
|
version: 3.1.404
|
|
displayName: Install .NET Core SDK 3.1.404
|
|
|
|
- task: UseDotNet@2
|
|
inputs:
|
|
version: 5.0.401
|
|
displayName: Install .NET Core SDK 5.0.401
|
|
|
|
- task: NuGetAuthenticate@0
|
|
displayName: Authenticate with NuGet feeds
|
|
|
|
- script: dotnet pack -c Release /p:PublicRelease=false
|
|
displayName: Create NuGet packages
|
|
|
|
- task: NuGetCommand@2
|
|
inputs:
|
|
command: push
|
|
packagesToPush: $(Build.SourcesDirectory)/bin/Release/Packages/*.nupkg
|
|
nuGetFeedType: internal
|
|
publishVstsFeed: coverlet/coverlet-nightly
|
|
displayName: Publish NuGet packages
|
|
|
|
- task: NuGetCommand@2
|
|
inputs:
|
|
command: push
|
|
packagesToPush: $(Build.SourcesDirectory)/bin/Release/Packages/*.snupkg
|
|
nuGetFeedType: internal
|
|
publishVstsFeed: coverlet/coverlet-nightly
|
|
displayName: Publish NuGet symbol packages
|