Skip to content

Commit ac39034

Browse files
authored
add support for dotnet core 3.1 (#25)
1 parent 4b1c8d1 commit ac39034

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

SayIt.Tests/SayIt.Tests.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
<GenerateProgramFile>false</GenerateProgramFile>

SayIt/SayIt.fsproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<Version>0.3.0</Version>
67
</PropertyGroup>
78

89
<ItemGroup>

azure-pipelines.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ pool:
2727

2828
variables:
2929
buildConfiguration: 'Release'
30-
framework: netcoreapp3.0
30+
framework: netcoreapp3.1
3131

3232
steps:
3333
- task: UseDotNet@2
3434
displayName: Install .NET Core SDK
3535
inputs:
36-
version: 3.0.100
36+
version: 3.1.100
3737

3838
- task: DotNetCoreCLI@2
3939
displayName: Build

0 commit comments

Comments
 (0)