Skip to content

Commit b7dab0d

Browse files
authored
Merge pull request #8395 from MicrosoftDocs/main637970637376027489sync_temp
Repo sync for protected CLA branch
2 parents 8f6f2e8 + 519096c commit b7dab0d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/modeling/creating-a-windows-forms-based-domain-specific-language.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ The following image is the DSL definition used in this walkthrough.
8787

8888
- `Animal` - In the Properties window, set **Inheritance Modifier** to **Abstract**.
8989

90+
> [!NOTE]
91+
> The **Named Domain Class** tool and the other tools mentioned in this section are found in the **Toolbox** tool window. You can open or hide this window with **View** > **Toolbox**.
92+
9093
5. Use the **Domain Class** tool to create the following classes:
9194

9295
- `Sheep`

docs/msbuild/msbuild.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For information about MSBuild for C++, see [MSBuild (C++)](/cpp/build/msbuild-vi
2929

3030
The following examples illustrate when you might run builds by invoking MSBuild from the command line instead of the Visual Studio IDE.
3131

32-
- Visual Studio isn't installed. ([Download MSBuild without Visual Studio](https://visualstudio.microsoft.com/downloads/?q=build+tools).)
32+
- Visual Studio isn't installed. To install MSBuild on a system that doesn't have Visual Studio, go to Build Tools for Visual Studio 2022 on the [downloads page](https://visualstudio.microsoft.com/downloads/). Another way of getting MSBuild is to install the [.NET SDK](/dotnet/core/sdk#acquiring-the-net-sdk).
3333

3434
- You want to use the 64-bit version of MSBuild, and you're using Visual Studio 2019 or earlier. This version of MSBuild is usually unnecessary, but it allows MSBuild to access more memory.
3535

docs/test/walkthrough-creating-and-running-unit-tests-for-managed-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ A test method must meet the following requirements:
272272

273273
## Fix your code and rerun your tests
274274

275-
The test result contains a message that describes the failure. For the `AreEqual` method, the message displays what was expected and what was actually received. You expected the balance to decrease, but instead it increased by the amount of the withdrawal.
275+
The test result contains a message that describes the failure. You may need to drill down to see this message. For the `AreEqual` method, the message displays what was expected and what was actually received. You expected the balance to decrease, but instead it increased by the amount of the withdrawal.
276276

277277
The unit test has uncovered a bug: the amount of the withdrawal is *added* to the account balance when it should be *subtracted*.
278278

0 commit comments

Comments
 (0)