-
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 <[email protected]> * Removed unused matrix values Signed-off-by: Whit Waldo <[email protected]> * Reverted some .NET 8 requirement Signed-off-by: Whit Waldo <[email protected]> * 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 <[email protected]> * Removed unnecessary secondary build step Signed-off-by: Whit Waldo <[email protected]> * Updating TFM moniker Signed-off-by: Whit Waldo <[email protected]> * Added test to install VStest Signed-off-by: Whit Waldo <[email protected]> * Rolling back use of tool as it doesn't independently exist outside of the SDK Signed-off-by: Whit Waldo <[email protected]> * Added .NET 9 to build targets Signed-off-by: Whit Waldo <[email protected]> * Added .NET 9 to target frameworks across solution Signed-off-by: Whit Waldo <[email protected]> * I understand the reason for the required install step now - adding it back with a .NET 9 install step Signed-off-by: Whit Waldo <[email protected]> * Placing install steps before build Signed-off-by: Whit Waldo <[email protected]> * Updating global.json Signed-off-by: Whit Waldo <[email protected]> * Disabled analyzer errors in unit tests Signed-off-by: Whit Waldo <[email protected]> * Added .NET 9 to test Signed-off-by: Whit Waldo <[email protected]> * Changed from #pragma error to #pragma warning Signed-off-by: Whit Waldo <[email protected]> * Fixed unit tests to resolve analyzer warning Signed-off-by: Whit Waldo <[email protected]> * Updated integration test to always include .NET 8 and .NET 9 installs Signed-off-by: Whit Waldo <[email protected]> * Falling back to add separate .NET 9 support Signed-off-by: Whit Waldo <[email protected]> * Updated referenced projects to target appropriate frameworks Signed-off-by: Whit Waldo <[email protected]> * Added all target frameworks back to Dapr.Commono Signed-off-by: Whit Waldo <[email protected]> * Added warnings to fix nullability analyzer warnings when targeting .NET 6 Signed-off-by: Whit Waldo <[email protected]> * Updated build step to use .NET 9 instead Signed-off-by: Whit Waldo <[email protected]> * 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 <[email protected]> * Including target for .NET 6, 7, 8 and 9 Signed-off-by: Whit Waldo <[email protected]> * Trialing fix to E2E integration test - excluding use of AppWebApplicationFactory in favor of direct use of HttpClient Signed-off-by: Whit Waldo <[email protected]> * Reverting as it breaks the other .NET versions Signed-off-by: Whit Waldo <[email protected]> * Potentially fixed unit tests in .NET 9 Signed-off-by: Whit Waldo <[email protected]> * Removed extra line from build definition Signed-off-by: Whit Waldo <[email protected]> * 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 <[email protected]> * Removed unintentionally added file to commit Signed-off-by: Whit Waldo <[email protected]> * Added .NET 9 to E2E test setup Signed-off-by: Whit Waldo <[email protected]> * Fixed typo Signed-off-by: Whit Waldo <[email protected]> * Removed RC version from .NET 9 build Signed-off-by: Whit Waldo <[email protected]> * Apparently the solution file got a minor change Signed-off-by: Whit Waldo <[email protected]> * Removed unnecessary null checks Signed-off-by: Whit Waldo <[email protected]> * Whoops - didn't mean to commit that project to the solution Signed-off-by: Whit Waldo <[email protected]> --------- Signed-off-by: Whit Waldo <[email protected]>
- 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.