diff --git a/src/dotnet-core-uninstall/LocalizableStrings.Designer.cs b/src/dotnet-core-uninstall/LocalizableStrings.Designer.cs index 5e3df9f7..6f49e3b1 100644 --- a/src/dotnet-core-uninstall/LocalizableStrings.Designer.cs +++ b/src/dotnet-core-uninstall/LocalizableStrings.Designer.cs @@ -115,7 +115,7 @@ internal static string ForceOptionDescriptionWindows { } /// - /// Looks up a localized string similar to (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download.. + /// Looks up a localized string similar to (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download.. /// internal static string HelpExplanationParagraphMac { get { @@ -124,7 +124,7 @@ internal static string HelpExplanationParagraphMac { } /// - /// Looks up a localized string similar to (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download.. + /// Looks up a localized string similar to (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download.. /// internal static string HelpExplanationParagraphWindows { get { @@ -150,6 +150,15 @@ internal static string InvalidInputVersionExceptionMessageFormat { } } + /// + /// Looks up a localized string similar to List arm64 .NET Core SDKs or Runtimes.. + /// + internal static string ListArm64OptionDescription { + get { + return ResourceManager.GetString("ListArm64OptionDescription", resourceCulture); + } + } + /// /// Looks up a localized string similar to List ASP.NET Core Runtimes.. /// @@ -496,6 +505,15 @@ internal static string UninstallAllPreviewsOptionDescription { } } + /// + /// Looks up a localized string similar to Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64.. + /// + internal static string UninstallArm64OptionDescription { + get { + return ResourceManager.GetString("UninstallArm64OptionDescription", resourceCulture); + } + } + /// /// Looks up a localized string similar to Remove ASP.NET Core Runtimes only.. /// diff --git a/src/dotnet-core-uninstall/LocalizableStrings.resx b/src/dotnet-core-uninstall/LocalizableStrings.resx index 0f2aee37..daf50328 100644 --- a/src/dotnet-core-uninstall/LocalizableStrings.resx +++ b/src/dotnet-core-uninstall/LocalizableStrings.resx @@ -353,10 +353,10 @@ This tool cannot uninstall versions of the runtime or SDK that are installed usi - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. The following items will be removed: @@ -390,4 +390,10 @@ Warning: {0}: {1} Uninstalling this item will cause Visual Studio for to break. + + List arm64 .NET Core SDKs or Runtimes. + + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + \ No newline at end of file diff --git a/src/dotnet-core-uninstall/Shared/BundleInfo/BundleArch.cs b/src/dotnet-core-uninstall/Shared/BundleInfo/BundleArch.cs index d0d36b88..e10fdd18 100644 --- a/src/dotnet-core-uninstall/Shared/BundleInfo/BundleArch.cs +++ b/src/dotnet-core-uninstall/Shared/BundleInfo/BundleArch.cs @@ -10,6 +10,6 @@ internal enum BundleArch { X86 = 0x1, X64 = 0x2, - Arm64 = 0x3 + Arm64 = 0x4 } } diff --git a/src/dotnet-core-uninstall/Shared/Configs/CommandLineConfigs.cs b/src/dotnet-core-uninstall/Shared/Configs/CommandLineConfigs.cs index e834d5a1..be2163bb 100644 --- a/src/dotnet-core-uninstall/Shared/Configs/CommandLineConfigs.cs +++ b/src/dotnet-core-uninstall/Shared/Configs/CommandLineConfigs.cs @@ -122,6 +122,10 @@ internal static class CommandLineConfigs $"--{X86OptionName}", LocalizableStrings.ListX86OptionDescription); + public static readonly Option ListArm64Option = new Option( + $"--{Arm64OptionName}", + LocalizableStrings.ListArm64OptionDescription); + public static readonly Command VersionSubcommand = new Command("--version") { IsHidden = true @@ -167,7 +171,8 @@ internal static class CommandLineConfigs public static readonly Option[] ArchUninstallOptions = new Option[] { new Option($"--{X64OptionName}", LocalizableStrings.UninstallX64OptionDescription), - new Option($"--{X86OptionName}", LocalizableStrings.UninstallX86OptionDescription) + new Option($"--{X86OptionName}", LocalizableStrings.UninstallX86OptionDescription), + new Option($"--{Arm64OptionName}", LocalizableStrings.UninstallArm64OptionDescription) }; public static readonly Option[] AdditionalUninstallOptions = new Option[] @@ -244,7 +249,8 @@ static CommandLineConfigs() { ListAuxOptions = ListAuxOptions .Append(ListX64Option) - .Append(ListX86Option); + .Append(ListX86Option) + .Append(ListArm64Option); } AssignOptionsToCommand(ListCommand, ListAuxOptions); diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.cs.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.cs.xlf index c30e5b65..c6d1b5ad 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.cs.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.de.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.de.xlf index bc9c8aa7..41bfec2a 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.de.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.es.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.es.xlf index fdd03e01..2c3d73fd 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.es.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.fr.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.fr.xlf index ca063615..cdfb27e5 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.fr.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.it.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.it.xlf index 29b4e253..f708cd55 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.it.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.ja.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.ja.xlf index 07e0da2f..74837c5f 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.ja.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.ko.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.ko.xlf index cad26ea7..3f4b126f 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.ko.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.pl.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.pl.xlf index 2a7d8f5f..831ac28a 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.pl.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.pt-BR.xlf index 2fceb1f0..538a607b 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.pt-BR.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.ru.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.ru.xlf index d1e40ff5..7d833888 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.ru.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.tr.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.tr.xlf index 04a437d8..bf2b2870 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.tr.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hans.xlf index aec20ff4..b1b97a4e 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hans.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only. diff --git a/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hant.xlf index 455186ec..509fd916 100644 --- a/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet-core-uninstall/xlf/LocalizableStrings.zh-Hant.xlf @@ -33,13 +33,13 @@ - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio for Mac or SDKs are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio for Mac, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. - (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. + (*) By default, SDKs and Runtimes that have a high probability of being used by Visual Studio are not removed. To remove these, specify them individually or use --force. If removing SDKs or Runtimes causes issues with your installation of Visual Studio, run “Repair”. SDKs and Runtimes are available for download at https://aka.ms/dotnet-core-download. @@ -52,6 +52,11 @@ The specified version is not valid: "{0}". + + List arm64 .NET Core SDKs or Runtimes. + List arm64 .NET Core SDKs or Runtimes. + + List ASP.NET Core Runtimes. List ASP.NET Core Runtimes. @@ -276,6 +281,11 @@ Uninstalling this item will cause Visual Studio for to break. Remove .NET Core SDKs or Runtimes marked as previews. (*) + + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + Can be used with --sdk, --runtime and --aspnet-runtime to remove arm64. + + Remove ASP.NET Core Runtimes only. Remove ASP.NET Core Runtimes only.