Skip to content

Commit 8e947d5

Browse files
authored
Merge pull request #7120 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch master)
2 parents 1f70fcf + 4239600 commit 8e947d5

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

docker/tutorials/your-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ At this point, your development team is quite small and you're simply building a
2222

2323
Before you can run the application, you need to get the application source code onto your machine. For real projects, you will typically clone the repo. But, for this tutorial, you have created a ZIP file containing the application.
2424

25-
1. [Download the ZIP](/assets/app.zip). Open the ZIP file and make sure you extract the contents.
25+
1. [Download the ZIP](http://localhost/assets/app.zip). Open the ZIP file and make sure you extract the contents.
2626

2727
1. Once extracted, use your favorite code editor to open the project. If you're in need of an editor, you can use [Visual Studio Code](https://code.visualstudio.com/). You should see the `package.json` and two subdirectories (`src` and `spec`).
2828

@@ -96,4 +96,4 @@ Next, you're going to make a modification to the app and learn how to update the
9696
Continue with the tutorial!
9797

9898
> [!div class="nextstepaction"]
99-
> [Updating your app](update-your-app.md)
99+
> [Updating your app](update-your-app.md)

docs/azure/vs-azure-tools-configure-roles-for-cloud-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The information for your cloud service is stored in the following files:
1818
- **ServiceDefinition.csdef** - The service definition file defines the run-time settings for your cloud service including what roles are required, endpoints, and virtual machine size. None of the data stored in `ServiceDefinition.csdef` can be changed when your role is running.
1919
- **ServiceConfiguration.cscfg** - The service configuration file configures how many instances of a role are run and the values of the settings defined for a role. The data stored in `ServiceConfiguration.cscfg` can be changed while your role is running.
2020

21-
To store different values for the settings that control how a role runs, you can define multiple service configurations. You can use a different service configuration for each deployment environment. For example, you can set your storage account connection string to use the local Azure storage emulator in a local service configuration and create another service configuration to use Azure storage in the cloud.
21+
To store different values for the settings that control how a role runs, you can define multiple service configurations. You can use a different service configuration for each deployment environment. For example, you can set your storage account connection string to use the local Azure Storage Emulator in a local service configuration and create another service configuration to use Azure storage in the cloud.
2222

2323
When you create an Azure cloud service in Visual Studio, two service configurations are automatically created and added to your Azure project:
2424

@@ -263,4 +263,4 @@ To view the file created by the code in the previous section, follow these steps
263263
1. When the Windows Explorer window opens, enter `MyLocalStorageTest.txt`` into the **Search** text box, and select **Enter** to start the search.
264264

265265
## Next steps
266-
Learn more about Azure projects in Visual Studio by reading [Configuring an Azure Project](vs-azure-tools-configuring-an-azure-project.md). Learn more about the cloud service schema by reading [Schema Reference](/previous-versions/azure/dd179398(v=azure.100)).
266+
Learn more about Azure projects in Visual Studio by reading [Configuring an Azure Project](vs-azure-tools-configuring-an-azure-project.md). Learn more about the cloud service schema by reading [Schema Reference](/previous-versions/azure/dd179398(v=azure.100)).

docs/ide/developer-community-privacy.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ If **Report a problem** is initiated from Visual Studio, we collect one or more
6363

6464
- Python logs, if they exist
6565

66+
- Razor LSP editor logs, if they exist
67+
6668
- Windows Forms logs, if they exist
6769

6870
- A screenshot, if you choose to include it

docs/test/isolating-code-under-test-with-microsoft-fakes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ For a more detailed description, see [Use stubs to isolate parts of your applica
140140

141141
```
142142

143-
The special piece of magic here is the class `StubIStockFeed`. For every interface in the referenced assembly, the Microsoft Fakes mechanism generates a stub class. The name of the stub class is the derived from the name of the interface, with "`Fakes.Stub`" as a prefix, and the parameter type names appended.
143+
The special piece of magic here is the class `StubIStockFeed`. For every interface in the referenced assembly, the Microsoft Fakes mechanism generates a stub class. The name of the stub class is derived from the name of the interface, with "`Fakes.Stub`" as a prefix, and the parameter type names appended.
144144

145145
Stubs are also generated for the getters and setters of properties, for events, and for generic methods. For more information, see [Use stubs to isolate parts of your application from each other for unit testing](../test/using-stubs-to-isolate-parts-of-your-application-from-each-other-for-unit-testing.md).
146146

@@ -244,4 +244,4 @@ You can also create shims for specific instances, for constructors, and for prop
244244

245245
[Use shims to isolate your application from other assemblies for unit testing](../test/using-shims-to-isolate-your-application-from-other-assemblies-for-unit-testing.md)
246246

247-
[Code generation, compilation, and naming conventions in Microsoft Fakes](../test/code-generation-compilation-and-naming-conventions-in-microsoft-fakes.md)
247+
[Code generation, compilation, and naming conventions in Microsoft Fakes](../test/code-generation-compilation-and-naming-conventions-in-microsoft-fakes.md)

0 commit comments

Comments
 (0)