Skip to content

Commit

Permalink
Feature/net6.0 (#42)
Browse files Browse the repository at this point in the history
* net6.0 support
  • Loading branch information
Leonid Efremov authored Feb 2, 2022
1 parent 86ab670 commit 71f4faa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions AspNet.WebApi.Common.Tests/AspNet.WebApi.Common.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591;</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="xUnit.Asserts.Compare" Version="1.0.0.5" />
Expand Down
3 changes: 1 addition & 2 deletions AspNet.WebApi.Common/AspNet.WebApi.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
<PropertyGroup>
<PackageId>AspNet.WebApi.Common</PackageId>
<Product>AspNet.WebApi.Common library</Product>
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>True</IsPackable>
<UserSecretsId>c9616ca5-eec0-49bd-9c08-e3b848e06d5b</UserSecretsId>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>
<PropertyGroup>
<ApplicationVersion>$(Version)</ApplicationVersion>
<VersionPrefix>1.4.0</VersionPrefix>
<VersionPrefix>1.5.0</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Company></Company>
<Authors>Leonid Efremov</Authors>
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ skip_branch_with_pr: true

max_jobs: 1

image: Ubuntu
image: Ubuntu2004

shallow_clone: false

init:
- git config --global core.autocrlf input

install:
- dotnet tool install --global dotnet-sonarscanner --version 5.2.2
- dotnet tool install --global dotnet-sonarscanner --version 5.4.1
- ps: |
$content = Get-Content -Path Directory.Build.props
$regex = New-Object System.Text.RegularExpressions.Regex ('()([\d]+.[\d]+.[\d]+)(<\/VersionPrefix>)', [System.Text.RegularExpressions.RegexOptions]::MultiLine)
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "5.0.300"
"version": "6.0.100"
}
}

0 comments on commit 71f4faa

Please sign in to comment.