Skip to content

Commit 4d6b38c

Browse files
committed
Rename attach task for c#
(Since it could be .NET Framework instead of .NET Core)
1 parent 34d248f commit 4d6b38c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/createNewProject/CSharpProjectCreator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class CSharpProjectCreator implements IProjectCreator {
9393
version: '0.2.0',
9494
configurations: [
9595
{
96-
name: localize('azFunc.attachToNetCoreFunc', "Attach to .NET Core Functions"),
96+
name: localize('azFunc.attachToNetCoreFunc', "Attach to C# Functions"),
9797
type: 'coreclr',
9898
request: 'attach',
9999
processId: '\${command:azureFunctions.pickProcess}',

src/commands/createNewProject/CSharpScriptProjectCreator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class CSharpScriptProjectCreator extends ScriptProjectCreatorBase {
3535
version: '0.2.0',
3636
configurations: [
3737
{
38-
name: localize('azFunc.attachToNetCoreFunc', "Attach to .NET Core Functions"),
38+
name: localize('azFunc.attachToNetCoreFunc', "Attach to C# Script Functions"),
3939
type: 'coreclr',
4040
request: 'attach',
4141
processId: '\${command:azureFunctions.pickProcess}'

0 commit comments

Comments
 (0)