Skip to content

Commit 1ed8d02

Browse files
authored
upgrade to NET 6
1 parent d7e68f6 commit 1ed8d02

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
uses: actions/setup-dotnet@v1
2323
with:
2424
dotnet-version: '3.1.x'
25-
- name: Setup .NET Core 5.0
25+
- name: Setup .NET Core 6.0
2626
uses: actions/setup-dotnet@v1
2727
with:
28-
dotnet-version: '5.0.x'
28+
dotnet-version: '6.0.x'
2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v1
3131
with:

.github/workflows/dotnet-core.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
uses: actions/setup-dotnet@v1
2020
with:
2121
dotnet-version: '3.1.x'
22-
- name: Setup .NET Core 5.0
22+
- name: Setup .NET Core 6.0
2323
uses: actions/setup-dotnet@v1
2424
with:
25-
dotnet-version: '5.0.x'
25+
dotnet-version: '6.0.x'
2626
- name: Install dependencies
2727
run: dotnet restore
2828
- name: Build
@@ -47,10 +47,10 @@ jobs:
4747
uses: actions/setup-dotnet@v1
4848
with:
4949
dotnet-version: '3.1.x'
50-
- name: Setup .NET Core 5.0
50+
- name: Setup .NET Core 6.0
5151
uses: actions/setup-dotnet@v1
5252
with:
53-
dotnet-version: '5.0.x'
53+
dotnet-version: '6.0.x'
5454
- name: Pack NuGet
5555
uses: brandedoutcast/publish-nuget@v2.5.5
5656
with:

.github/workflows/sonarqube-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
uses: actions/setup-dotnet@v1
1717
with:
1818
dotnet-version: '3.1.x'
19-
- name: Setup .NET Core 5.0
19+
- name: Setup .NET Core 6.0
2020
uses: actions/setup-dotnet@v1
2121
with:
22-
dotnet-version: '5.0.x'
22+
dotnet-version: '6.0.x'
2323
- name: SonarScanner for .NET Core with pull request decoration support
24-
uses: highbyte/sonarscan-dotnet@2.0
24+
uses: highbyte/sonarscan-dotnet@v2.1.2
2525
with:
2626
sonarProjectKey: qatoolkit_qatoolkit-core-net
2727
sonarProjectName: qatoolkit_qatoolkit-core-net

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.3.12</Version>
3+
<Version>0.3.13</Version>
44
</PropertyGroup>
55
</Project>

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2021 Miha Jakovac
3+
Copyright (c) 2020-2022 Miha Jakovac
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## Description
99
`QAToolKit.Core` is a .NET Standard 2.1 library, that contains core objects and functions of the toolkit. It's normally not used as a standalone library but is a dependency for other QAToolKit libraries.
1010

11-
Supported .NET frameworks and standards: `netstandard2.0`, `netstandard2.1`, `netcoreapp3.1`, `net5.0`
11+
Supported .NET frameworks and standards: `netstandard2.0`, `netstandard2.1`, `netcoreapp3.1`, `net6.0`
1212

1313
Get in touch with me on:
1414

src/QAToolKit.Core.Test/QAToolKit.Core.Test.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
@@ -11,9 +11,9 @@
1111
<PrivateAssets>all</PrivateAssets>
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>
14-
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
15-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
14+
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
15+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
1717
<PackageReference Include="murmurhash" Version="1.0.3" />
1818
<PackageReference Include="xunit" Version="2.4.1" />
1919
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">

src/QAToolKit.Core/QAToolKit.Core.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net6.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<LangVersion>latest</LangVersion>
77
<ProjectGuid>5a2191e1-6682-437f-8ed2-de9324bfc4f4</ProjectGuid>
@@ -19,7 +19,7 @@
1919
<PackageProjectUrl>https://github.com/qatoolkit/qatoolkit-core-net</PackageProjectUrl>
2020
<PackageIcon>qatoolkit-64x64.png</PackageIcon>
2121
<RepositoryUrl>https://github.com/qatoolkit/qatoolkit-core-net</RepositoryUrl>
22-
<PackageTags>qatoolkit-core-net;.net;c#;f#;dotnet;netstandard;net5</PackageTags>
22+
<PackageTags>qatoolkit-core-net;.net;c#;f#;dotnet;netstandard;net6</PackageTags>
2323
<Configurations>Debug;Release</Configurations>
2424
</PropertyGroup>
2525

0 commit comments

Comments
 (0)