Skip to content

Commit b93b8f7

Browse files
authored
use '.NET' instead of '.NET Core' (#8638)
2 parents 46b28d2 + 394100a commit b93b8f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

l10n/bundle.l10n.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@
248248
"Failed to set extension directory": "Failed to set extension directory",
249249
"Failed to set debugadpter directory": "Failed to set debugadpter directory",
250250
"Failed to set install complete file path": "Failed to set install complete file path",
251-
"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}.",
252-
"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.",
251+
"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}.",
252+
"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.",
253253
"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'.",
254254
"Unable to determine RuntimeId. Please set 'targetArchitecture' in your launch.json configuration.": "Unable to determine RuntimeId. Please set 'targetArchitecture' in your launch.json configuration.",
255255
"Unexpected RuntimeId '{0}'.": "Unexpected RuntimeId '{0}'.",

src/coreclrDebug/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class CoreClrDebugUtil {
7171
if (semver.lt(dotnetInfo.Version, MINIMUM_SUPPORTED_DOTNET_CLI)) {
7272
throw new Error(
7373
vscode.l10n.t(
74-
`The .NET Core SDK located on the path is too old. .NET Core debugging will not be enabled. The minimum supported version is {0}.`,
74+
`The .NET SDK located on the path is too old. .NET debugging will not be enabled. The minimum supported version is {0}.`,
7575
MINIMUM_SUPPORTED_DOTNET_CLI
7676
)
7777
);
@@ -80,7 +80,7 @@ export class CoreClrDebugUtil {
8080
const message = error instanceof Error ? error.message : `${error}`;
8181
throw new Error(
8282
vscode.l10n.t(
83-
`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.`,
83+
`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.`,
8484
message
8585
)
8686
);

0 commit comments

Comments
 (0)