Skip to content

Commit eca9acb

Browse files
svickmairaw
authored andcommitted
Fixed included notes (#1275)
1 parent 5349a35 commit eca9acb

22 files changed

+44
-44
lines changed

docs/csharp/programming-guide/concepts/assemblies-gac/walkthrough-embedding-type-information-from-microsoft-office-assemblies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ translation.priority.mt:
2525
# Walkthrough: Embedding Type Information from Microsoft Office Assemblies in Visual Studio (C#)
2626
If you embed type information in an application that references COM objects, you can eliminate the need for a primary interop assembly (PIA). Additionally, the embedded type information enables you to achieve version independence for your application. That is, your program can be written to use types from multiple versions of a COM library without requiring a specific PIA for each version. This is a common scenario for applications that use objects from Microsoft Office libraries. Embedding type information enables the same build of a program to work with different versions of Microsoft Office on different computers without the need to redeploy either the program or the PIA for each version of Microsoft Office.
2727

28-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
28+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
2929

3030
## Prerequisites
3131
This walkthrough requires the following:
@@ -139,4 +139,4 @@ If you embed type information in an application that references COM objects, you
139139

140140
## See Also
141141
[Walkthrough: Embedding Types from Managed Assemblies in Visual Studio (C#)](../../../../csharp/programming-guide/concepts/assemblies-gac/walkthrough-embedding-types-from-managed-assemblies-in-visual-studio.md)
142-
[/link (C# Compiler Options)](../../../../csharp/language-reference/compiler-options/link-compiler-option.md)
142+
[/link (C# Compiler Options)](../../../../csharp/language-reference/compiler-options/link-compiler-option.md)

docs/csharp/programming-guide/concepts/assemblies-gac/walkthrough-embedding-types-from-managed-assemblies-in-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If you embed type information from a strong-named managed assembly, you can loos
5959

6060
- Run the client program to see that the new version of the runtime assembly is being used without having to recompile the client program.
6161

62-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
62+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
6363

6464
## Creating an Interface
6565

@@ -181,4 +181,4 @@ If you embed type information from a strong-named managed assembly, you can loos
181181
[/link (C# Compiler Options)](../../../../csharp/language-reference/compiler-options/link-compiler-option.md)
182182
[C# Programming Guide](../../../../csharp/programming-guide/index.md)
183183
[Programming with Assemblies](http://msdn.microsoft.com/library/25918b15-701d-42c7-95fc-c290d08648d6)
184-
[Assemblies and the Global Assembly Cache (C#)](../../../../csharp/programming-guide/concepts/assemblies-gac/index.md)
184+
[Assemblies and the Global Assembly Cache (C#)](../../../../csharp/programming-guide/concepts/assemblies-gac/index.md)

docs/visual-basic/developing-apps/programming/computer-resources/how-to-check-connection-status.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ translation.priority.ht:
3939
# How to: Check Connection Status in Visual Basic
4040
The <xref:Microsoft.VisualBasic.Devices.Network.IsAvailable%2A> property can be used to determine whether the computer has a working network or Internet connection.
4141

42-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
42+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
4343

4444
### To check whether a computer has a working connection
4545

@@ -51,4 +51,4 @@ The <xref:Microsoft.VisualBasic.Devices.Network.IsAvailable%2A> property can be
5151

5252
## See Also
5353
<xref:Microsoft.VisualBasic.Devices.Network?displayProperty=fullName>
54-
<xref:Microsoft.VisualBasic.Devices.Network.IsAvailable%2A>
54+
<xref:Microsoft.VisualBasic.Devices.Network.IsAvailable%2A>

docs/visual-basic/developing-apps/programming/computer-resources/how-to-download-a-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The <xref:Microsoft.VisualBasic.Devices.Network.DownloadFile%2A> method can be u
5050

5151
- The request is denied by the Web site (<xref:System.Net.WebException>).
5252

53-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
53+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
5454

5555
> [!IMPORTANT]
5656
> Do not make decisions about the contents of the file based on the name of the file. For example, the file Form1.vb may not be a Visual Basic source file. Verify all inputs before using the data in your application. The contents of the file may not be what is expected, and methods to read from the file may fail.
@@ -80,4 +80,4 @@ The <xref:Microsoft.VisualBasic.Devices.Network.DownloadFile%2A> method can be u
8080
<xref:Microsoft.VisualBasic.Devices.Network>
8181
<xref:Microsoft.VisualBasic.Devices.Network.DownloadFile%2A>
8282
[How to: Upload a File](../../../../visual-basic/developing-apps/programming/computer-resources/how-to-upload-a-file.md)
83-
[How to: Parse File Paths](../../../../visual-basic/developing-apps/programming/drives-directories-files/how-to-parse-file-paths.md)
83+
[How to: Parse File Paths](../../../../visual-basic/developing-apps/programming/drives-directories-files/how-to-parse-file-paths.md)

docs/visual-basic/developing-apps/programming/drives-directories-files/walkthrough-manipulating-files-and-directories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This walkthrough provides an introduction to the fundamentals of file I/O in [!I
4949

5050
This walkthrough uses members of the `My.Computer.FileSystem Object`, which are available in [!INCLUDE[vbprvb](../../../../csharp/programming-guide/concepts/linq/includes/vbprvb_md.md)]. See <xref:Microsoft.VisualBasic.FileIO.FileSystem> for more information. At the end of the walkthrough, an equivalent example is provided that uses classes from the <xref:System.IO> namespace.
5151

52-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
52+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
5353

5454
### To create the project
5555

@@ -185,4 +185,4 @@ This walkthrough provides an introduction to the fundamentals of file I/O in [!I
185185
<xref:System.IO>
186186
<xref:Microsoft.VisualBasic.FileIO.FileSystem>
187187
<xref:Microsoft.VisualBasic.FileIO.FileSystem.CurrentDirectory%2A>
188-
[Walkthrough: Manipulating Files by Using .NET Framework Methods](../../../../visual-basic/developing-apps/programming/drives-directories-files/walkthrough-manipulating-files-by-using-net-framework-methods.md)
188+
[Walkthrough: Manipulating Files by Using .NET Framework Methods](../../../../visual-basic/developing-apps/programming/drives-directories-files/walkthrough-manipulating-files-by-using-net-framework-methods.md)

docs/visual-basic/developing-apps/programming/drives-directories-files/walkthrough-manipulating-files-by-using-net-framework-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ translation.priority.ht:
4747
# Walkthrough: Manipulating Files by Using .NET Framework Methods (Visual Basic)
4848
This walkthrough demonstrates how to open and read a file using the <xref:System.IO.StreamReader> class, check to see if a file is being accessed, search for a string within a file read with an instance of the <xref:System.IO.StreamReader> class, and write to a file using the <xref:System.IO.StreamWriter> class.
4949

50-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
50+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
5151

5252
## Creating the Application
5353
Start [!INCLUDE[vsprvs](../../../../csharp/includes/vsprvs_md.md)] and begin the project by creating a form that the user can use to write to the designated file.
@@ -172,4 +172,4 @@ This walkthrough demonstrates how to open and read a file using the <xref:System
172172
## See Also
173173
<xref:System.IO.StreamReader>
174174
<xref:System.IO.StreamWriter>
175-
[Walkthroughs](../../../../visual-basic/walkthroughs.md)
175+
[Walkthroughs](../../../../visual-basic/walkthroughs.md)

docs/visual-basic/programming-guide/concepts/assemblies-gac/walkthrough-embedding-type-information-from-microsoft-office-assemblies-in-vs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ translation.priority.mt:
2525
# Walkthrough: Embedding Type Information from Microsoft Office Assemblies in Visual Studio (Visual Basic)
2626
If you embed type information in an application that references COM objects, you can eliminate the need for a primary interop assembly (PIA). Additionally, the embedded type information enables you to achieve version independence for your application. That is, your program can be written to use types from multiple versions of a COM library without requiring a specific PIA for each version. This is a common scenario for applications that use objects from Microsoft Office libraries. Embedding type information enables the same build of a program to work with different versions of Microsoft Office on different computers without the need to redeploy either the program or the PIA for each version of Microsoft Office.
2727

28-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
28+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
2929

3030
## Prerequisites
3131
This walkthrough requires the following:
@@ -124,4 +124,4 @@ If you embed type information in an application that references COM objects, you
124124

125125
## See Also
126126
[Walkthrough: Embedding Types from Managed Assemblies in Visual Studio (Visual Basic)](../../../../visual-basic/programming-guide/concepts/assemblies-gac/walkthrough-embedding-types-from-managed-assemblies-in-vs.md)
127-
[/link (Visual Basic)](../../../../visual-basic/reference/command-line-compiler/link.md)
127+
[/link (Visual Basic)](../../../../visual-basic/reference/command-line-compiler/link.md)

docs/visual-basic/programming-guide/concepts/assemblies-gac/walkthrough-embedding-types-from-managed-assemblies-in-vs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If you embed type information from a strong-named managed assembly, you can loos
5959

6060
- Run the client program to see that the new version of the runtime assembly is being used without having to recompile the client program.
6161

62-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
62+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
6363

6464
## Creating an Interface
6565

@@ -186,4 +186,4 @@ End Function
186186
[/link (Visual Basic)](../../../../visual-basic/reference/command-line-compiler/link.md)
187187
[Visual Basic Programming Guide](../../../../visual-basic/programming-guide/index.md)
188188
[Programming with Assemblies](http://msdn.microsoft.com/library/25918b15-701d-42c7-95fc-c290d08648d6)
189-
[Assemblies and the Global Assembly Cache (Visual Basic)](../../../../visual-basic/programming-guide/concepts/assemblies-gac/index.md)
189+
[Assemblies and the Global Assembly Cache (Visual Basic)](../../../../visual-basic/programming-guide/concepts/assemblies-gac/index.md)

docs/visual-basic/programming-guide/language-features/constants-enums/how-to-declare-a-constant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You use the `Const` statement to declare a constant and set its value. By declar
5959

6060
The constant must have a valid symbolic name (the rules are the same as those for creating variable names) and an expression composed of numeric or string constants and operators (but no function calls).
6161

62-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
62+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
6363

6464
### To declare a constant
6565

@@ -96,4 +96,4 @@ You use the `Const` statement to declare a constant and set its value. By declar
9696
[How to: Declare an Enumeration](../../../../visual-basic/programming-guide/language-features/constants-enums/how-to-declare-enumerations.md)
9797
[Enumerations and Name Qualification](../../../../visual-basic/programming-guide/language-features/constants-enums/enumerations-and-name-qualification.md)
9898
[Option Strict Statement](../../../../visual-basic/language-reference/statements/option-strict-statement.md)
99-
[Constants and Enumerations](../../../../visual-basic/language-reference/constants-and-enumerations.md)
99+
[Constants and Enumerations](../../../../visual-basic/language-reference/constants-and-enumerations.md)

docs/visual-basic/programming-guide/language-features/control-flow/walkthrough-implementing-ienumerable-of-t.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The <xref:System.Collections.Generic.IEnumerable%601> interface is implemented b
4545

4646
In this walkthrough, you will create a class that implements the `IEnumerable(Of String)` interface and a class that implements the `IEnumerator(Of String)` interface to read a text file one line at a time.
4747

48-
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
48+
[!INCLUDE[note_settings_general](../../../../csharp/language-reference/compiler-messages/includes/note_settings_general_md.md)]
4949

5050
## Creating the Enumerable Class
5151

@@ -72,4 +72,4 @@ The <xref:System.Collections.Generic.IEnumerable%601> interface is implemented b
7272
[Introduction to LINQ in Visual Basic](../../../../visual-basic/programming-guide/language-features/linq/introduction-to-linq.md)
7373
[Control Flow](../../../../visual-basic/programming-guide/language-features/control-flow/index.md)
7474
[Loop Structures](../../../../visual-basic/programming-guide/language-features/control-flow/loop-structures.md)
75-
[For Each...Next Statement](../../../../visual-basic/language-reference/statements/for-each-next-statement.md)
75+
[For Each...Next Statement](../../../../visual-basic/language-reference/statements/for-each-next-statement.md)

0 commit comments

Comments
 (0)