-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15,271 changed files
with
136,408 additions
and
36,057 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Publish Microsoft Fast-Blazor | ||
|
||
pr: none | ||
trigger: none | ||
|
||
pool: | ||
vmImage: 'windows-2022' | ||
|
||
variables: | ||
project: '**/Microsoft.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter.csproj' | ||
buildPlatform: 'Any CPU' | ||
buildConfiguration: 'Release' | ||
|
||
steps: | ||
- task: NuGetToolInstaller@1 | ||
displayName: Install NuGet tools | ||
|
||
- task: UseDotNet@2 | ||
displayName: 'Install .NET 6.0' | ||
inputs: | ||
version: 6.0.405 | ||
includePreviewVersions: true | ||
|
||
- task: UseDotNet@2 | ||
displayName: 'Install .NET 7.0' | ||
inputs: | ||
version: 7.0.102 | ||
includePreviewVersions: true | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: Restore packages | ||
inputs: | ||
command: 'restore' | ||
projects: $(project) | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: Build | ||
inputs: | ||
command: 'build' | ||
projects: $(project) | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: Pack | ||
inputs: | ||
command: 'pack' | ||
packagesToPack: $(project) | ||
versioningScheme: 'off' | ||
|
||
- task: EsrpCodeSigning@2 | ||
displayName: Code Signing Assemblies (Authenticode Signing) | ||
inputs: | ||
ConnectedServiceName: 'FAST-NuGet-Publishing-SC' | ||
FolderPath: '$(Build.ArtifactStagingDirectory)' | ||
Pattern: | | ||
**/*.nupkg | ||
UseMinimatch: true | ||
signConfigType: 'inlineSignParams' | ||
inlineOperation: | | ||
[ | ||
{ | ||
"KeyCode" : "CP-401405", | ||
"OperationCode" : "NuGetSign", | ||
"Parameters" : {}, | ||
"ToolName" : "sign", | ||
"ToolVersion" : "1.0" | ||
}, | ||
{ | ||
"KeyCode" : "CP-401405", | ||
"OperationCode" : "NuGetVerify", | ||
"Parameters" : {}, | ||
"ToolName" : "sign", | ||
"ToolVersion" : "1.0" | ||
} | ||
] | ||
SessionTimeout: '60' | ||
MaxConcurrency: '200' | ||
MaxRetryAttempts: '5' | ||
|
||
|
||
- task: NuGetCommand@2 | ||
displayName: Publish to NuGet | ||
inputs: | ||
command: 'push' | ||
packagesToPush: '$(Build.ArtifactStagingDirectory)\*.nupkg;' | ||
nuGetFeedType: 'external' | ||
publishFeedCredentials: 'NugetServiceConnect' |
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
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
Oops, something went wrong.