Skip to content

Commit 593625c

Browse files
authoredJan 29, 2022
improved swagger processor, net 6 update
1 parent 308f508 commit 593625c

40 files changed

+4099
-215
lines changed
 

‎.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
uses: actions/setup-dotnet@v1
2121
with:
2222
dotnet-version: '3.1.x'
23-
- name: Setup .NET Core 5.0
23+
- name: Setup .NET Core 6.0
2424
uses: actions/setup-dotnet@v1
2525
with:
26-
dotnet-version: '5.0.x'
26+
dotnet-version: '6.0.x'
2727
- name: Install dependencies
2828
run: dotnet restore
2929
- name: Build
@@ -48,10 +48,10 @@ jobs:
4848
uses: actions/setup-dotnet@v1
4949
with:
5050
dotnet-version: '3.1.x'
51-
- name: Setup .NET Core 5.0
51+
- name: Setup .NET Core 6.0
5252
uses: actions/setup-dotnet@v1
5353
with:
54-
dotnet-version: '5.0.x'
54+
dotnet-version: '6.0.x'
5555
- name: Pack NuGet
5656
uses: brandedoutcast/publish-nuget@v2.5.5
5757
with:

‎.github/workflows/sonarqube-analysis.yml

Lines changed: 3 additions & 3 deletions
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-source-swagger-net
2727
sonarProjectName: qatoolkit_qatoolkit-source-swagger-net

‎Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.3.11</Version>
3+
<Version>0.4.0</Version>
44
</PropertyGroup>
55
</Project>

‎LICENSE

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## Description
99
`QAToolKit.Source.Swagger` is a .NET library, which generates `IEnumerable<HttpRequest>` object that is the input for other components.
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
Major features:
1414

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
11111111111
2+
22222222222
3+
33333333333

0 commit comments

Comments
 (0)