Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions l10n/bundle.l10n.json
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@
"Failed to set extension directory": "Failed to set extension directory",
"Failed to set debugadpter directory": "Failed to set debugadpter directory",
"Failed to set install complete file path": "Failed to set install complete file path",
"The .NET Core SDK located on the path is too old. .NET Core debugging will not be enabled. The minimum supported version is {0}.": "The .NET Core SDK located on the path is too old. .NET Core debugging will not be enabled. The minimum supported version is {0}.",
"The .NET Core SDK cannot be located: {0}. .NET Core debugging will not be enabled. Make sure the .NET Core SDK is installed and is on the path.": "The .NET Core SDK cannot be located: {0}. .NET Core debugging will not be enabled. Make sure the .NET Core SDK is installed and is on the path.",
"The .NET SDK located on the path is too old. .NET debugging will not be enabled. The minimum supported version is {0}.": "The .NET SDK located on the path is too old. .NET debugging will not be enabled. The minimum supported version is {0}.",
"The .NET SDK cannot be located: {0}. .NET debugging will not be enabled. Make sure the .NET SDK is installed and is on the path.": "The .NET SDK cannot be located: {0}. .NET debugging will not be enabled. Make sure the .NET SDK is installed and is on the path.",
"The value '{0}' for 'targetArchitecture' in launch configuraiton is invalid. Expected 'x86_64' or 'arm64'.": "The value '{0}' for 'targetArchitecture' in launch configuraiton is invalid. Expected 'x86_64' or 'arm64'.",
"Unable to determine RuntimeId. Please set 'targetArchitecture' in your launch.json configuration.": "Unable to determine RuntimeId. Please set 'targetArchitecture' in your launch.json configuration.",
"Unexpected RuntimeId '{0}'.": "Unexpected RuntimeId '{0}'.",
Expand Down
4 changes: 2 additions & 2 deletions src/coreclrDebug/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class CoreClrDebugUtil {
if (semver.lt(dotnetInfo.Version, MINIMUM_SUPPORTED_DOTNET_CLI)) {
throw new Error(
vscode.l10n.t(
`The .NET Core SDK located on the path is too old. .NET Core debugging will not be enabled. The minimum supported version is {0}.`,
`The .NET SDK located on the path is too old. .NET debugging will not be enabled. The minimum supported version is {0}.`,
MINIMUM_SUPPORTED_DOTNET_CLI
)
);
Expand All @@ -80,7 +80,7 @@ export class CoreClrDebugUtil {
const message = error instanceof Error ? error.message : `${error}`;
throw new Error(
vscode.l10n.t(
`The .NET Core SDK cannot be located: {0}. .NET Core debugging will not be enabled. Make sure the .NET Core SDK is installed and is on the path.`,
`The .NET SDK cannot be located: {0}. .NET debugging will not be enabled. Make sure the .NET SDK is installed and is on the path.`,
message
)
);
Expand Down
Loading