diff options
author | crupest <crupest@outlook.com> | 2019-12-10 13:52:39 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-12-10 13:52:39 +0800 |
commit | 77eaf82aaa12b995dcb0ea6bea092d44ef8d2199 (patch) | |
tree | aa276d7733bfd90258c018b5c00287f8b6e8499c /azure-pipelines.yml | |
parent | ae0fe2a03e04a6d170ac5f05039afe2a9407f255 (diff) | |
download | timeline-77eaf82aaa12b995dcb0ea6bea092d44ef8d2199.tar.gz timeline-77eaf82aaa12b995dcb0ea6bea092d44ef8d2199.tar.bz2 timeline-77eaf82aaa12b995dcb0ea6bea092d44ef8d2199.zip |
Migrate to DotNetCore 3.1 .
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6db48bb6..14f8a670 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,7 +17,7 @@ stages: - task: UseDotNet@2
inputs:
packageType: sdk
- version: 3.0.x
+ version: 3.1.x
- script: |
dotnet restore Timeline/Timeline.csproj --configfile nuget.config
@@ -55,7 +55,7 @@ stages: - task: UseDotNet@2
inputs:
packageType: sdk
- version: 3.0.x
+ version: 3.1.x
- script: dotnet publish Timeline/Timeline.csproj --configuration $(buildConfiguration) --output ./Timeline/publish/
displayName: Dotnet Publish
|