Skip to content

Commit 104ba2b

Browse files
committed
Update the changelog
1 parent bc489b0 commit 104ba2b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

vscode-dotnet-runtime-extension/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning].
99

1010
## [1.7.1] - 2023-08-14
1111

12-
This is a small release that changes the error handling and issue reporting experience to make it easier to submit issues with the information we need to properly triage them. It also updates some package dependencies.
12+
This is a small release that changes the error handling and issue reporting experience to make it easier to submit issues with the information we need to properly triage them. It also updates some package dependencies and increases timeout time.
1313

1414
## [1.7.0] - 2023-08-14
1515

vscode-dotnet-runtime-extension/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ namespace commandKeys {
6060
const commandPrefix = 'dotnet';
6161
const configPrefix = 'dotnetAcquisitionExtension';
6262
const displayChannelName = '.NET Runtime';
63-
const defaultTimeoutValue = 300;
63+
const defaultTimeoutValue = 600;
6464
const moreInfoUrl = 'https://github.com/dotnet/vscode-dotnet-runtime/blob/main/Documentation/troubleshooting-runtime.md';
6565

6666
export function activate(context: vscode.ExtensionContext, extensionContext?: IExtensionContext) {

vscode-dotnet-sdk-extension/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace commandKeys {
6161
const commandPrefix = 'dotnet-sdk';
6262
const configPrefix = 'dotnetSDKAcquisitionExtension';
6363
const displayChannelName = '.NET SDK';
64-
const defaultTimeoutValue = 300;
64+
const defaultTimeoutValue = 600;
6565
const pathTroubleshootingOption = 'Troubleshoot';
6666
const troubleshootingUrl = 'https://github.com/dotnet/vscode-dotnet-runtime/blob/main/Documentation/troubleshooting-sdk.md';
6767
const knownExtensionIds = ['ms-dotnettools.sample-extension', 'ms-dotnettools.vscode-dotnet-pack'];

0 commit comments

Comments
 (0)