-
Notifications
You must be signed in to change notification settings - Fork 5.1k
[wasm] Stop hardcoding TFM in Wasm.Build.Tests #112955
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f0f2577
b81f9fd
da42888
fe23e86
32b0177
f9fe67b
89390a1
5ea5acf
e3e9417
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,12 +108,12 @@ private async Task BrowserRunTwiceWithAndThenWithoutBuildAsync(Configuration con | |
public static IEnumerable<object?[]> BrowserBuildAndRunTestData() | ||
{ | ||
yield return new object?[] { "", BuildTestBase.DefaultTargetFramework, DefaultRuntimeAssetsRelativePath }; | ||
yield return new object?[] { "-f net10.0", "net10.0", DefaultRuntimeAssetsRelativePath }; | ||
yield return new object?[] { $"-f {DefaultTargetFramework}", DefaultTargetFramework, DefaultRuntimeAssetsRelativePath }; | ||
|
||
if (EnvironmentVariables.WorkloadsTestPreviousVersions) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a little bit worried that we'll forget updating the earlier versions here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there are two old versions at max and in other places net7 and net6 were used. i've removed them and added Previous2 property. when it's time for net 11, it will be testing one STS version which may not be ideal in second half of the year (when it goes out of support) but won't break anything if nuget.config keeps dotnet9 for a while. |
||
{ | ||
yield return new object?[] { "-f net9.0", "net9.0", DefaultRuntimeAssetsRelativePath }; | ||
yield return new object?[] { "-f net8.0", "net8.0", DefaultRuntimeAssetsRelativePath }; | ||
yield return new object?[] { $"-f {PreviousTargetFramework}", PreviousTargetFramework, DefaultRuntimeAssetsRelativePath }; | ||
yield return new object?[] { $"-f {Previous2TargetFramework}", Previous2TargetFramework, DefaultRuntimeAssetsRelativePath }; | ||
} | ||
|
||
// ActiveIssue("https://github.com/dotnet/runtime/issues/90979") | ||
|
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.