You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/tutorials/your-application.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,9 @@ At this point, your development team is quite small and you're simply building a
20
20
21
21
## Get the app
22
22
23
-
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.
23
+
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, we have created a ZIP file containing the application.
24
+
25
+
1. Make sure that you have Docker for Windows or Docker Community Edition installed on the local machine. See [Docker for Windows installation documentation](https://docs.docker.com/docker-for-windows/install/). The install process makes the ZIP file containing the sample available at the localhost address.
24
26
25
27
1.[Download the ZIP](http://localhost/assets/app.zip). Open the ZIP file and make sure you extract the contents.
Copy file name to clipboardExpand all lines: docs/ai/overview.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
---
2
2
title: Overview of Visual Studio Tools for AI
3
+
description: Learn how Visual Studio Tools for AI is an integrated development environment (IDE) that you can use to build, test, and deploy deep learning solutions.
Copy file name to clipboardExpand all lines: docs/code-quality/analyzers-faq.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ This page contains answers to some frequently asked questions about .NET Compile
18
18
19
19
**Q**: Should I use code analysis or EditorConfig for checking code style?
20
20
21
-
**A**: Code analysis and EditorConfig files work hand-in-hand. When you define code styles [in an EditorConfig file](../ide/editorconfig-code-style-settings-reference.md) or on the [text editor Options](../ide/code-styles-and-code-cleanup.md) page, you're actually configuring the code analyzers that are built into Visual Studio. EditorConfig files can be used to enable or disable analyzer rules, and also to configure NuGet analyzer packages.
21
+
**A**: Code analysis and EditorConfig files work hand-in-hand. When you define code styles [in an EditorConfig file](/dotnet/fundamentals/code-analysis/code-style-rule-options) or on the [text editor Options](../ide/code-styles-and-code-cleanup.md) page, you're actually configuring the code analyzers that are built into Visual Studio. EditorConfig files can be used to enable or disable analyzer rules, and also to configure NuGet analyzer packages.
22
22
23
23
## EditorConfig versus rule sets
24
24
@@ -28,8 +28,8 @@ This page contains answers to some frequently asked questions about .NET Compile
28
28
29
29
However, EditorConfig files offer additional ways to configure rules too:
30
30
31
-
- For the .NET code-quality analyzers, EditorConfig files let you [define which types of code to analyze](fxcop-analyzer-options.md).
32
-
- For the .NET code-style analyzers that are built into Visual Studio, EditorConfig files let you [define the preferred code styles](../ide/editorconfig-code-style-settings-reference.md) for a codebase.
31
+
- For the .NET code-quality analyzers, EditorConfig files let you [define which types of code to analyze](/dotnet/fundamentals/code-analysis/code-quality-rule-options).
32
+
- For the .NET code-style analyzers that are built into Visual Studio, EditorConfig files let you [define the preferred code styles](/dotnet/fundamentals/code-analysis/code-style-rule-options) for a codebase.
33
33
34
34
In addition to rule sets and EditorConfig files, some analyzers are configured through the use of text files marked as [additional files](../ide/build-actions.md#build-action-values) for the C# and VB compilers.
35
35
@@ -91,4 +91,4 @@ In addition to rule sets and EditorConfig files, some analyzers are configured t
0 commit comments