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
> We welcome your input to help shape the scope and approach. You can track the status and provide input on this
23
-
> [issue](https://github.com/dotnet/docs/issues/942) at GitHub.
24
-
>
25
-
> If you would like to review early drafts and outlines of this topic, please leave a note with your contact information in the issue.
26
-
>
27
-
> Learn more about how you can contribute on [GitHub](https://github.com/dotnet/docs/blob/master/CONTRIBUTING.md).
28
-
>
17
+
# Getting started with C# #
18
+
19
+
This section provides short, simple tutorials that let you quickly build an application using C# and .NET Core. There are getting started topics for Visual Studio 2015, Visual Studio 2017 RC, and Visual Studio Code. You can build either a simple Hello World application or, if you have Visual Studio 2017, a simple class library that can be used by other applications.
20
+
21
+
The following topics are available:
22
+
23
+
-[Building a C# Hello World application with .NET Core in Visual Studio 2017 RC](with-visual-studio-2017.md)
24
+
25
+
Visual Studio 2017 RC, the latest release of Visual Studio, lets you code, compile, run, debug, profile, and publish your applications from a integrated development environment for Windows.
26
+
27
+
The topic lets you create and run a simple Hello World application and then modify it to run a slightly more interactive Hello World application. Once you've finished building and running your application, you can also learn how to [debug it](.\debugging-with-visual-studio-2017.md) and how to [publish it](.\publishing-with-visual-studio-2017.md) so that it can be run on any platform supported by .NET Core.
28
+
29
+
-[Building a class library with C# and .NET Core in Visual Studio 2017 RC](library-with-visual-studio-2017.md)
30
+
31
+
A class library lets you define types and type members that can be called from another application. This topic lets you create a class library with a single method that determines whether a string begins with an uppercase character. Once you've finished building the library, you can develop a [unit test](testing-library-with-visual-studio.md) to ensure that it works as expected, and then you can make it available to [applications that want to consume it](consuming-library-with-visual-studio-2017.md).
32
+
33
+
-[Getting started with Visual Studio Code](with-visual-studio-code.md)
34
+
35
+
Visual Studio Code is a programming editor for Windows, Linux, and macOS that supports IntelliSense (code completion) and debugging.
36
+
37
+
This topic shows you how to create and run a simple Hello World application with Visual Studio Code and .NET Core.
38
+
39
+
-[Building a C# Hello World application with .NET Core in Visual Studio 2015](with-visual-studio.md)
40
+
41
+
Visual Studio 2015, like the later Visual Studio 2017 RC, lets you code, compile, run, debug, profile, and publish your applications from a integrated development environment for Windows.
42
+
43
+
The topic lets you create and run an interactive Hello World application. Once you've finished building and running your application, you can also learn how to [debug it](.\debugging-with-visual-studio.md) and how to [publish it](.\publishing-with-visual-studio.md) so that it can be run on any platform supported by .NET Core.
Copy file name to clipboardExpand all lines: docs/csharp/getting-started/publishing-with-visual-studio.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Now that you've created your console app (in the [Building a Hello World Appllic
21
21
22
22

23
23
24
-
2. Right-click on the HelloWorld project (not the HelloWorld solution) and select **Publ2222ish** from the menu. You can also select **Publish HelloWorld** from the main Visual Studio **Build** menu.
24
+
2. Right-click on the HelloWorld project (not the HelloWorld solution) and select **Publish** from the menu. You can also select **Publish HelloWorld** from the main Visual Studio **Build** menu.
25
25
26
26
3. When the **Profile** tab of the **Publish** dialog box shown in the following figure appears, select the **File System** target.
0 commit comments