Skip to content

Commit

Permalink
Rename KnownWebAssemblySdkPack to KnownWebAssemblySdkBrowserPack
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed Apr 6, 2023
1 parent f968538 commit 0af6292
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class ProcessFrameworkReferences : TaskBase

public ITaskItem[] KnownILLinkPacks { get; set; } = Array.Empty<ITaskItem>();

public ITaskItem[] KnownWebAssemblySdkPacks { get; set; } = Array.Empty<ITaskItem>();
public ITaskItem[] KnownWebAssemblySdkBrowserPacks { get; set; } = Array.Empty<ITaskItem>();

public bool UsingMicrosoftNETSdkWebAssembly { get; set; }

Expand Down Expand Up @@ -626,7 +626,7 @@ private bool AddToolPack(
ToolPackType.Crossgen2 => KnownCrossgen2Packs,
ToolPackType.ILCompiler => KnownILCompilerPacks,
ToolPackType.ILLink => KnownILLinkPacks,
ToolPackType.WebAssemblySdk => KnownWebAssemblySdkPacks,
ToolPackType.WebAssemblySdk => KnownWebAssemblySdkBrowserPacks,
_ => throw new ArgumentException($"Unknown package type {toolPackType}", nameof(toolPackType))
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Copyright (c) .NET Foundation. All rights reserved.
KnownCrossgen2Packs="@(KnownCrossgen2Pack)"
KnownILCompilerPacks="@(KnownILCompilerPack)"
KnownILLinkPacks="@(KnownILLinkPack)"
KnownWebAssemblySdkPacks="@(KnownWebAssemblySdkPack)"
KnownWebAssemblySdkBrowserPacks="@(KnownWebAssemblySdkBrowserPack)"
UsingMicrosoftNETSdkWebAssembly="$(UsingMicrosoftNETSdkWebAssembly)"
NETCoreSdkRuntimeIdentifier="$(NETCoreSdkRuntimeIdentifier)"
NetCoreRoot="$(NetCoreRoot)"
Expand Down

0 comments on commit 0af6292

Please sign in to comment.