Skip to content

Commit

Permalink
Update serverless protocol project to 1.10.0 (Azure#1907)
Browse files Browse the repository at this point in the history
  • Loading branch information
Y-Sindo committed Jan 31, 2024
1 parent 2672fdc commit 7d3c386
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .azure/pipelines/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,21 @@ extends:
includesymbols: true
buildProperties: $(MSBuildProperties);SymbolPackageFormat=snupkg
verbosityPack: Normal
- task: CmdLine@2
displayName: Clean Local Feed
inputs:
script: if exist $(LocalFeed)\ del /s /q $(LocalFeed)
- task: NuGetCommand@2
displayName: Initialize Local Feed
inputs:
command: custom
arguments: init artifacts $(LocalFeed)
- task: MSBuild@1
displayName: Test Restoring Packages
inputs:
solution: build/package-test.3.proj
msbuildArchitecture: x64
msbuildArguments: /p:$(MSBuildProperties) /p:UseLocalFeed=true /p:LocalFeed=$(LocalFeed) /t:Restore
- ${{ if or( eq(parameters.isFinalBuild, false), eq(parameters.releaseEmulator, true)) }}:
- task: DotNetCoreCLI@2
displayName: dotnet pack emulator when only dev or release emulator
Expand All @@ -150,21 +165,6 @@ extends:
includesymbols: true
buildProperties: $(MSBuildProperties);SymbolPackageFormat=snupkg
verbosityPack: Normal
- task: CmdLine@2
displayName: Clean Local Feed
inputs:
script: if exist $(LocalFeed)\ del /s /q $(LocalFeed)
- task: NuGetCommand@2
displayName: Initialize Local Feed
inputs:
command: custom
arguments: init artifacts $(LocalFeed)
- task: MSBuild@1
displayName: Test Restoring Packages
inputs:
solution: build/package-test.3.proj
msbuildArchitecture: x64
msbuildArguments: /p:$(MSBuildProperties) /p:UseLocalFeed=true /p:LocalFeed=$(LocalFeed) /t:Restore
- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0
displayName: "Manifest Generator "
inputs:
Expand Down

0 comments on commit 7d3c386

Please sign in to comment.