Skip to content

Commit

Permalink
upgrade to .net core 3.1 +semver: minor
Browse files Browse the repository at this point in the history
* upgrade to .net core 3.1

* fix pipeline
  • Loading branch information
charlesdevandiere authored Dec 12, 2019
1 parent 9beecb7 commit 4814947
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ steps:
- script: GitVersion /output buildserver
displayName: GitVersion

- task: UseDotNet@2
displayName: 'Use .NET Core sdk 3.1'
inputs:
packageType: sdk
version: 3.1.100
installationPath: $(Agent.ToolsDirectory)/dotnet

- script: dotnet pack -c $(buildConfiguration) -o $(Build.ArtifactStagingDirectory)\out -p:Version=$(GitVersion.SemVer)
displayName: 'dotnet pack'

Expand Down
2 changes: 1 addition & 1 deletion src/XMLDoc2Markdown/XMLDoc2Markdown.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ToolCommandName>xmldoc2md</ToolCommandName>
<PackAsTool>true</PackAsTool>
<IsPackable>true</IsPackable>
Expand Down

0 comments on commit 4814947

Please sign in to comment.