Skip to content
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

[main] Update dependencies from dotnet/arcade #80234

Merged
merged 26 commits into from
Jan 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c4cec2b
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jan 5, 2023
39eb9af
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jan 6, 2023
a90f854
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jan 6, 2023
cbfc870
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jan 8, 2023
557b0aa
React to SDK change around linking
ViktorHofer Jan 9, 2023
52f4937
Update NetCoreAppToolCurrent to net8.0
ViktorHofer Jan 9, 2023
9b623ae
Upgrade aspnetcoretoolcurrent as well
ViktorHofer Jan 9, 2023
af2698d
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jan 9, 2023
10039ab
[wasm] WasmAppHost: fix new analyzer warning
radical Jan 9, 2023
08e6984
Merge remote-tracking branch 'origin/main' into darc-main-aab430d2-d9…
radical Jan 9, 2023
8342ded
Fix CA1512 analyzer warnings
radical Jan 9, 2023
11b736e
fix
radical Jan 9, 2023
1fea7d7
React to aspnetcore analyzers
ViktorHofer Jan 10, 2023
616dc0c
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jan 10, 2023
a65c046
Update tfm in WasmApp.LocalBuild.props
radical Jan 10, 2023
7295f8b
[wasm] Use dotnet version from global.json for helix
radical Jan 10, 2023
52b000b
Fix illink tests and react to analyzer
ViktorHofer Jan 11, 2023
978266d
Update hardcoded linker tfm
ViktorHofer Jan 11, 2023
003edf1
Fix illink tests
vitek-karas Jan 11, 2023
62d241c
Fix ILLinker tests on NativeAOT
ViktorHofer Jan 11, 2023
43b4d2c
Resolve analyzer warning in MonoLinkerTestsCasesExpectations
ViktorHofer Jan 11, 2023
38f62f6
Upgrade xunit runner tfm
ViktorHofer Jan 11, 2023
9dc60a2
Delete dead property
ViktorHofer Jan 11, 2023
ec5f16b
In NativeAOT common files with ILLink have ILLink format, meaning tab…
Jan 11, 2023
562cac4
Upgrade SDK because of "Failed to create CoreCLR"
ViktorHofer Jan 11, 2023
dbc28a7
Update macOS version target triple
ViktorHofer Jan 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
radical committed Jan 9, 2023
commit 11b736e0602e3c0addb531e337f435272a3a5d71
2 changes: 1 addition & 1 deletion src/mono/wasm/host/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private void AssertValid(int index)
{
if (c.Option == null)
throw new InvalidOperationException("OptionContext.Option is null.");
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index);
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, c.Option.MaxValueCount, nameof(index));
if (c.Option.OptionValueType == OptionValueType.Required &&
index >= values.Count)
throw new OptionException(string.Format(
Expand Down