Skip to content

Commit 0fd5492

Browse files
committed
Remove ASPNETCORE_ENV variable from setting
1 parent 146d0dd commit 0fd5492

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Razor/src/Microsoft.AspNetCore.Razor.VSCode/src/BlazorDebug/BlazorDebugConfigurationProvider.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ export class BlazorDebugConfigurationProvider implements vscode.DebugConfigurati
1717
const shellArgs = process.platform === 'win32' ? ['/c', 'chcp 65001 >NUL & dotnet run'] : ['run'];
1818
const spawnOptions = {
1919
cwd: configuration.cwd || (folder && folder.uri && folder.uri.fsPath),
20-
env: {
21-
...process.env,
22-
ASPNETCORE_ENVIRONMENT: 'Development',
23-
},
2420
};
2521

2622
const output = this.vscodeType.window.createTerminal({

0 commit comments

Comments
 (0)