forked from RehanSaeed/Schema.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1. Added .NET 8 support 1.1 Aligned package versions with respective targets (.NET 6, netstandard2.0, .NET 8.0) 1.2 Removed .NET 7.0 target 1.3 Removed direct targets on the library for .NET Framework and only left netstandard2.0 because of dependencies, netstandard2.0 reference required anyways and there is no point to split targets on the library itself. 2. StyleCop is deprecated 2.1 Removed StyleCop 2.2 Added Microsoft.CodeAnalysis.NetAnalyzers 2.3 Fixed nullable references issues and other minor issues 3. Moved packages for unit tests out of .props file 4. Upgraded xUnit 4.1 Fixed xUnit warnings 5. Upgraded the rest of packages in unit tests Signed-off-by: Aliaksandr Kukrash <[email protected]> * Explicitly enable NET Analyzers for all projects and move common project settings to .props file Signed-off-by: Aliaksandr Kukrash <[email protected]> * Test pipeline update Signed-off-by: Aliaksandr Kukrash <[email protected]> * Remove extra "UseDotNet" task since latest SDK should be sufficient Signed-off-by: Aliaksandr Kukrash <[email protected]> * Put latest SDK version as AppVeyor build failed as it cannot discover latest .NET version in dotnet-install.sh Signed-off-by: Aliaksandr Kukrash <[email protected]> --------- Signed-off-by: Aliaksandr Kukrash <[email protected]>
- Loading branch information
Showing
71 changed files
with
4,980 additions
and
677 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,12 +33,14 @@ jobs: | |
with: | ||
lfs: true | ||
fetch-depth: 0 | ||
- name: "Install .NET SDK" | ||
uses: actions/setup-dotnet@v3.2.0 | ||
- name: "Install .NET 6.0 SDK" | ||
uses: actions/setup-dotnet@v4.2.0 | ||
with: | ||
dotnet-version: | | ||
6.0.x | ||
global-json-file: "./global.json" | ||
dotnet-version: 6.0.x | ||
- name: "Install .NET 8.0 SDK" | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 8.0.x | ||
- name: "Dotnet Tool Restore" | ||
run: dotnet tool restore | ||
shell: pwsh | ||
|
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 |
---|---|---|
|
@@ -352,3 +352,4 @@ MigrationBackup/ | |
.ionide/ | ||
|
||
Artefacts/ | ||
/.idea |
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
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
Oops, something went wrong.