Skip to content

Commit 27f8d6f

Browse files
DCtheGeekIEvangelistYoussef1313
authored
Links: .NET (2021-03) (#23446)
* Links: .NET (2021-03) * Apply suggestions from code review Co-authored-by: Youssef Victor <[email protected]> * Update docs/index.yml Co-authored-by: David Pine <[email protected]> Co-authored-by: Youssef Victor <[email protected]>
1 parent 856db6f commit 27f8d6f

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

docs/architecture/dapr-for-net-developers/dapr-at-20000-feet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ gRPC is a modern, high-performance framework that evolves the age-old [remote pr
205205
- Bidirectional full-duplex communication for sending both client requests and server responses simultaneously.
206206
- Built-in streaming enabling requests and responses to asynchronously stream large data sets.
207207
208-
To learn more, check out the [gRPC overview](https://docs.microsoft.com/dotnet/architecture/cloud-native/grpc#what-is-grpc) from the [Architecting Cloud-Native .NET Apps for Azure](https://docs.microsoft.com/dotnet/architecture/cloud-native/) eBook.
208+
To learn more, check out the [gRPC overview](../cloud-native/grpc.md#what-is-grpc) from the [Architecting Cloud-Native .NET Apps for Azure](../cloud-native/index.md) eBook.
209209
210210
## Dapr and service meshes
211211

docs/csharp/language-reference/compiler-options/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ You can invoke the C# compiler by typing the name of its executable file (*csc.e
3939

4040
For .NET Framework projects, you can also run *csc.exe* from the command line. Every compiler option is available in two forms: **-option** and **/option**. In .NET Framework web projects, you specify options for compiling code-behind in the *web.config* file. For more information, see [\<compiler> Element](../../../framework/configure-apps/file-schema/compiler/compiler-element.md).
4141

42-
If you use the **Developer Command Prompt for Visual Studio** window, all the necessary environment variables are set for you. For information on how to access this tool, see [Developer Command Prompt for Visual Studio](../../../framework/tools/developer-command-prompt-for-vs.md).
42+
If you use the **Developer Command Prompt for Visual Studio** window, all the necessary environment variables are set for you. For information on how to access this tool, see [Developer Command Prompt for Visual Studio](/visualstudio/ide/reference/command-prompt-powershell).
4343

4444
The *csc.exe* executable file is usually located in the Microsoft.NET\Framework\\*\<Version>* folder under the *Windows* directory. Its location might vary depending on the exact configuration of a particular computer. If more than one version of .NET Framework is installed on your computer, you'll find multiple versions of this file. For more information about such installations, see [How to: determine which versions of the .NET Framework are installed](../../../framework/migration-guide/how-to-determine-which-versions-are-installed.md).

docs/csharp/misc/cs1668.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Invalid search path 'path' specified in 'path string' -- 'system error message'
1616

1717
## See also
1818

19-
- [C# Compiler Options Listed Alphabetically](../language-reference/compiler-options/listed-alphabetically.md)
19+
- [C# Compiler Options](../language-reference/compiler-options/index.md)
2020
- [C# Compiler Errors](../language-reference/compiler-messages/index.md)

docs/csharp/programming-guide/main-and-command-args/top-level-statements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You can write a `Main` method explicitly, but it can't function as an entry poin
3232

3333
> CS7022 The entry point of the program is global code; ignoring 'Main()' entry point.
3434
35-
In a project with top-level statements, you can't use the [-main](../../language-reference/compiler-options/main-compiler-option.md) compiler option to select the entry point, even if the project has one or more `Main` methods.
35+
In a project with top-level statements, you can't use the [-main](../../language-reference/compiler-options/advanced.md#mainentrypoint-or-startupobject) compiler option to select the entry point, even if the project has one or more `Main` methods.
3636

3737
## `using` directives
3838

docs/index.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,12 @@ tools:
176176
url: visual-basic/index.yml
177177

178178
# Card with summary style
179+
179180
additionalContent:
180-
# Supports up to 3 sections
181-
sections:
181+
182+
# Supports up to 3 sections
183+
184+
sections:
182185
- title: Create your application # < 60 chars (optional)
183186
summary: "You can choose web, mobile, desktop, gaming, IoT, and more." # < 160 chars (optional)
184187
items:
@@ -239,11 +242,11 @@ additionalContent:
239242
links:
240243
- url: azure/index.yml
241244
text: Azure for .NET developers
242-
- url: /dotnet/azure/migration/app-service?view=azure-dotnet&preserve-view=true
245+
- url: ./azure/migration/app-service.md?preserve-view=true&view=azure-dotnet
243246
text: Migrate on-premises .NET web apps or services
244-
- url: /dotnet/azure/key-azure-services
247+
- url: ./azure/key-azure-services.md
245248
text: Azure services for .NET developers
246-
- url: /dotnet/azure/sdk/azure-sdk-for-dotnet
249+
- url: ./azure/sdk/azure-sdk-for-dotnet.md
247250
text: Azure .NET SDK
248251
- url: fsharp/using-fsharp-on-azure/index.md
249252
text: Use F# on Azure
@@ -321,5 +324,5 @@ additionalContent:
321324
summary: Visual Basic language reference and specification
322325
url: visual-basic/language-reference/index.md
323326

324-
# footer (optional)
327+
# footer (optional)
325328
footer: "Are you interested in contributing to the .NET docs? For more information, see our [contributor guide](/contribute/dotnet/dotnet-contribute)."

docs/visual-basic/getting-started/additional-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ The following web sites provide guidance and can help you find answers to common
2727
|URL|Description|
2828
|----------|----------------|
2929
|[Visual Basic documentation samples](https://github.com/dotnet/docs/tree/main/samples/snippets/visualbasic)|Contains the samples used throughout the Visual Basic and .NET documentation.|
30-
|[Samples browser](https://docs.microsoft.com/samples/browse/?languages=vb)|Contains code samples written in Visual Basic|
30+
|[Samples browser](/samples/browse/?languages=vb)|Contains code samples written in Visual Basic|
3131

3232
### Forums
3333

3434
|URL|Description|
3535
|----------|----------------|
36-
|[Microsoft Q&A](https://docs.microsoft.com/answers/topics/dotnet-visual-basic.html)|Technical questions about Visual Basic programming language.|
36+
|[Microsoft Q&A](/answers/topics/dotnet-visual-basic.html)|Technical questions about Visual Basic programming language.|
3737

3838
### Videos and webcasts
3939

0 commit comments

Comments
 (0)