Skip to content

Commit

Permalink
add support for dotnet core 3.1 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
pviotti authored Dec 7, 2019
1 parent 4b1c8d1 commit ac39034
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SayIt.Tests/SayIt.Tests.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
Expand Down
3 changes: 2 additions & 1 deletion SayIt/SayIt.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>0.3.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ pool:

variables:
buildConfiguration: 'Release'
framework: netcoreapp3.0
framework: netcoreapp3.1

steps:
- task: UseDotNet@2
displayName: Install .NET Core SDK
inputs:
version: 3.0.100
version: 3.1.100

- task: DotNetCoreCLI@2
displayName: Build
Expand Down

0 comments on commit ac39034

Please sign in to comment.