-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated build and integration test scripts to include .NET 9 Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Removed unused matrix values Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Reverted some .NET 8 requirement Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updated setup-dotnet to use latest action version + updated script to prefer a GA release, but use RC if available. Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Removed unnecessary secondary build step Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updating TFM moniker Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added test to install VStest Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Rolling back use of tool as it doesn't independently exist outside of the SDK Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added .NET 9 to build targets Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added .NET 9 to target frameworks across solution Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * I understand the reason for the required install step now - adding it back with a .NET 9 install step Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Placing install steps before build Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updating global.json Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Disabled analyzer errors in unit tests Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added .NET 9 to test Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Changed from #pragma error to #pragma warning Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Fixed unit tests to resolve analyzer warning Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updated integration test to always include .NET 8 and .NET 9 installs Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Falling back to add separate .NET 9 support Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updated referenced projects to target appropriate frameworks Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added all target frameworks back to Dapr.Commono Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added warnings to fix nullability analyzer warnings when targeting .NET 6 Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updated build step to use .NET 9 instead Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Fixed cloud event middleware tests - the ApplicationBuilder requires a non-null ServiceProvider per https://learn.microsoft.com/en-us/dotnet/core/compatibility/extensions/8.0/activatorutilities-createinstance-null-provider Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Including target for .NET 6, 7, 8 and 9 Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Trialing fix to E2E integration test - excluding use of AppWebApplicationFactory in favor of direct use of HttpClient Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Reverting as it breaks the other .NET versions Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Potentially fixed unit tests in .NET 9 Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Removed extra line from build definition Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Updated documentation to reflect .NET 9 and a note highlighting that .NET 6 and .NET 7 will be deprecated in v1.16 Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Removed unintentionally added file to commit Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Added .NET 9 to E2E test setup Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Fixed typo Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Removed RC version from .NET 9 build Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Apparently the solution file got a minor change Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Removed unnecessary null checks Signed-off-by: Whit Waldo <whit.waldo@innovian.net> * Whoops - didn't mean to commit that project to the solution Signed-off-by: Whit Waldo <whit.waldo@innovian.net> --------- Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
- Loading branch information
Showing
21 changed files
with
255 additions
and
97 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"_comment": "This policy allows the 8.0.100 SDK or patches in that family.", | ||
"sdk": { | ||
"version": "8.0.100", | ||
"rollForward": "minor" | ||
"version": "9.0.100", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -34,6 +34,8 @@ public Test() | |
7; | ||
#elif NET8_0 | ||
8; | ||
#elif NET9_0 | ||
9; | ||
#endif | ||
|
||
// | ||
|
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.