Skip to content

Commit b063f67

Browse files
authored
Merge pull request #13984 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch main)
2 parents 62b61e3 + 5dcf750 commit b063f67

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

docs/msbuild/msbuild-response-files.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,15 @@ In version 15.6 and later, MSBuild searches parent directories of the project fo
3131

3232
You can use the syntax `%MSBuildThisFileDirectory%` in a *Directory.Build.rsp* file, to refer to the directory that contains the *Directory.Build.rsp* file. This syntax requires percent signs on all operating systems, like [Environment.ExpandEnvironmentVariables](/dotnet/api/system.environment.expandenvironmentvariables), even though `MSBuildThisFileDirectory` isn't an environment variable.
3333

34+
> [!NOTE]
35+
> Visual Studio (the IDE) **does not apply** `.rsp` response files—such as `MSBuild.rsp` or `Directory.Build.rsp`—when building within the IDE. These files are only processed when you run MSBuild via the **`msbuild.exe`** or **`dotnet build`** command‑line tools.
36+
37+
3438
## Disabling response files
3539

3640
To disable automatically processing the default response files *MSBuild.rsp* and *Directory.Build.rsp* in a particular invocation of MSBuild, use the command-line option `-noAutoResponse`. Any response files referenced explicitly using the @-syntax on the command-line are still processed. See [MSBuild command line reference](msbuild-command-line-reference.md).
3741

3842
## See also
3943

4044
- [MSBuild reference](../msbuild/msbuild-reference.md)
41-
- [Command-line reference](../msbuild/msbuild-command-line-reference.md)
45+
- [Command-line reference](../msbuild/msbuild-command-line-reference.md)

docs/snippets/cpp/VS_Snippets_Winforms/DataGrid_ColorMembers/CPP/datagrid_10.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ namespace DataGridSample
452452
{
453453
// <Snippet2>
454454
// String variable used to show message.
455-
String^ myString = "Selection backgound color changed from: ";
455+
String^ myString = "Selection background color changed from: ";
456456

457457
// Store current foreground color of selected cells.
458458
Color myCurrentColor = myDataGrid->SelectionBackColor;
@@ -579,7 +579,7 @@ namespace DataGridSample
579579
{
580580
// <Snippet7>
581581
// String variable used to show message.
582-
String^ myString = "Backgound color changed from: ";
582+
String^ myString = "Background color changed from: ";
583583

584584
// Store current foreground color of selected cells.
585585
Color myCurrentColor = myDataGrid->BackColor;

docs/snippets/cpp/VS_Snippets_Winforms/ParentMenu/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public ref class Form1: public System::Windows::Forms::Form
6464
public:
6565
void CreateMyMenuItems()
6666
{
67-
// Craete a main menu object.
67+
// Create a main menu object.
6868
MainMenu^ mainMenu1 = gcnew MainMenu;
6969

7070
// Create three top-level menu items.

docs/snippets/cpp/VS_Snippets_Winforms/System.ComponentModel.BackgroundWorker/CPP/fibonacciform.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public ref class FibonacciForm: public System::Windows::Forms::Form
3535
{
3636
InitializeComponent();
3737
numberToCompute = highestPercentageReached = 0;
38-
InitializeBackgoundWorker();
38+
InitializeBackgroundWorker();
3939
}
4040

4141

4242
private:
4343

4444
// Set up the BackgroundWorker object by
4545
// attaching event handlers.
46-
void InitializeBackgoundWorker()
46+
void InitializeBackgroundWorker()
4747
{
4848
backgroundWorker1->DoWork += gcnew DoWorkEventHandler( this, &FibonacciForm::backgroundWorker1_DoWork );
4949
backgroundWorker1->RunWorkerCompleted += gcnew RunWorkerCompletedEventHandler( this, &FibonacciForm::backgroundWorker1_RunWorkerCompleted );

docs/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.GridViewUnbound/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public ref class Form1: public System::Windows::Forms::Form
101101
}
102102

103103

104-
//Even though the date internaly stores the year as YYYY, using formatting, the
104+
//Even though the date internally stores the year as YYYY, using formatting, the
105105
//UI can have the format in YY.
106106
void ShortFormDateFormat( DataGridViewCellFormattingEventArgs^ formatting )
107107
{

0 commit comments

Comments
 (0)