Skip to content

Commit

Permalink
Support .NET 5 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleKerkstra authored Feb 2, 2021
1 parent b7f7a8a commit d2364f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ pool:
vmImage: windows-latest
steps:
- task: UseDotNet@2
displayName: Install .NET Core 3.1 SDK
displayName: Install .NET 5 SDK
inputs:
version: '3.1.x'
version: '5.0.x'
packageType: sdk
- task: UseDotNet@2
displayName: Install .NET Core 2.1 SDK
Expand Down
2 changes: 1 addition & 1 deletion src/XUnit.CommandLine/XUnit.CommandLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.0;net5.0</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<PackageId>xunit-cli</PackageId>
<ToolCommandName>xunit</ToolCommandName>
Expand Down

0 comments on commit d2364f9

Please sign in to comment.