Skip to content

Commit 3ea9ca4

Browse files
author
Ron Petrusha
authored
Merge pull request #1252 from rpetrusha/starting
top-level getting started portal page
2 parents c8b9e16 + 99ecbee commit 3ea9ca4

File tree

2 files changed

+31
-15
lines changed

2 files changed

+31
-15
lines changed

docs/csharp/getting-started/index.md

Lines changed: 30 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
title: Getting Started | C# Guide
33
description: Getting Started with C#
44
keywords: C#, Getting Started, Acquisition, Install
5-
author: dotnet-bot
5+
author: rpetrusha
6+
ms.author: ronpet
67
manager: wpickett
78
ms.date: 08/23/2016
89
ms.topic: article
@@ -13,16 +14,31 @@ ms.assetid: b77c7263-7cbf-4729-9626-8fbc3f5f14d9
1314

1415
---
1516

16-
# Getting started
17-
18-
> **Note**
19-
>
20-
> This topic hasn’t been written yet!
21-
>
22-
> 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.
44+

docs/csharp/getting-started/publishing-with-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Now that you've created your console app (in the [Building a Hello World Appllic
2121

2222
![Image](.\media\release.jpg)
2323

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.
2525

2626
3. When the **Profile** tab of the **Publish** dialog box shown in the following figure appears, select the **File System** target.
2727

0 commit comments

Comments
 (0)