-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support .NET 9.0 and update dependence packages (#357)
* feat: support .NET 9.0 and update dependence packages Signed-off-by: Taoyuesong <[email protected]> * fix: azure pipeline error Signed-off-by: Taoyuesong <[email protected]> --------- Signed-off-by: Taoyuesong <[email protected]>
- Loading branch information
1 parent
9429ca7
commit e133b78
Showing
7 changed files
with
53 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ jobs: | |
6.0.x | ||
7.0.x | ||
8.0.x | ||
9.0.x | ||
include-prerelease: true | ||
|
||
- name: Check .NET info | ||
|
@@ -33,11 +34,11 @@ jobs: | |
- name: Build solution | ||
run: dotnet build -c Release --no-restore | ||
|
||
- name: Run net8.0 Infer# | ||
- name: Run net8.0 Infer# | ||
uses: microsoft/[email protected] | ||
with: | ||
binary-path: ./Casbin/bin/Release/net8.0 | ||
|
||
- name: Print net8.0 Infer# analysis results | ||
run: cat infer-out/report.txt | ||
|
||
|
@@ -47,11 +48,11 @@ jobs: | |
name: "infersharp-net8.0-results" | ||
path: './infer-out/report.txt' | ||
|
||
- name: Run net7.0 Infer# | ||
- name: Run net7.0 Infer# | ||
uses: microsoft/[email protected] | ||
with: | ||
binary-path: ./Casbin/bin/Release/net7.0 | ||
|
||
- name: Print net7.0 Infer# analysis results | ||
run: cat infer-out/report.txt | ||
|
||
|
@@ -61,44 +62,44 @@ jobs: | |
name: "infersharp-net7.0-results" | ||
path: './infer-out/report.txt' | ||
|
||
- name: Run net6.0 Infer# | ||
- name: Run net6.0 Infer# | ||
uses: microsoft/[email protected] | ||
with: | ||
binary-path: ./Casbin/bin/Release/net6.0 | ||
|
||
- name: Print net6.0 Infer# analysis results | ||
run: cat infer-out/report.txt | ||
|
||
- name: Upload net6.0 infer# results artefacts | ||
uses: actions/[email protected] | ||
with: | ||
name: "infersharp-net6.0-results" | ||
path: './infer-out/report.txt' | ||
|
||
- name: Run net5.0 Infer# | ||
- name: Run net5.0 Infer# | ||
uses: microsoft/[email protected] | ||
with: | ||
binary-path: ./Casbin/bin/Release/net5.0 | ||
|
||
- name: Print net5.0 Infer# analysis results | ||
run: cat infer-out/report.txt | ||
|
||
- name: Upload net5.0 infer# results artefacts | ||
uses: actions/[email protected] | ||
with: | ||
name: "infersharp-net5.0-results" | ||
path: './infer-out/report.txt' | ||
|
||
- name: Run net3.1 Infer# | ||
- name: Run net3.1 Infer# | ||
uses: microsoft/[email protected] | ||
with: | ||
binary-path: ./Casbin/bin/Release/netcoreapp3.1 | ||
|
||
- name: Print net3.1 Infer# analysis results | ||
run: cat infer-out/report.txt | ||
|
||
- name: Upload net3.1 infer# results artefacts | ||
uses: actions/[email protected] | ||
with: | ||
name: "infersharp-net3.1-results" | ||
path: './infer-out/report.txt' | ||
path: './infer-out/report.txt' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters