Skip to content

Commit a86c77c

Browse files
authored
🔧 small fixes (#1153)
1 parent 712bf23 commit a86c77c

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

docs/csharp/whats-new.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ description: How is the C# language evolving
44
keywords: C#, Latest Features, What's New, Roslyn
55
author: BillWagner
66
manager: wpickett
7-
ms.date: 08/25/2016
7+
ms.date: 10/14/2016
88
ms.topic: article
99
ms.prod: visual-studio-dev-14
1010
ms.technology: devlang-csharp
1111
ms.devlang: csharp
1212
ms.assetid: 77deec51-a14d-46d4-9bb3-faf449477149
1313
---
1414

15-
# What's new in C#
15+
# What's new in C# #
1616

1717

1818
* [C# 7](csharp-7.md):
1919
- This page describes the latest features in the C# language. This covers C# 7, currently available in [Visual Studio 15 Preview 4](https://www.visualstudio.com/visual-studio-pre-release-downloads/).
2020

2121
* [C# 6](csharp-6.md):
22-
- This page describes the latest features in the currently released version of C#, C# 6. These features are available in Visual Studio 2015 for Windows developers, and on .NET Core 1.0 for developers exploring C# on MacOS and Linux.
22+
- This page describes the latest features in the currently released version of C#, C# 6. These features are available in Visual Studio 2015 for Windows developers, and on .NET Core 1.0 for developers exploring C# on macOS and Linux.
2323

2424
* [C# Interactive](interactive.md):
2525
- This page describes C# Interactive, an interactive Read Eval Print Loop (REPL) that you can use to explore the C# language. You can use it to write code interactively and see it execute immediately, without any compile or build step.
2626

2727
* [Cross Platform Support](../core/index.md):
28-
- C#, through .NET Core support, runs on multiple platforms. If you are interested in trying C# on MacOS, or on one of hte many support Linux distributions, learn more about .NET Core.
28+
- C#, through .NET Core support, runs on multiple platforms. If you are interested in trying C# on macOS, or on one of hte many support Linux distributions, learn more about .NET Core.
2929

3030
- [.NET Compiler Platform SDK](roslyn/index.md):
3131
- The .NET Compiler Platform SDK enables you to write code that performs static analysis on C# code. You can use these APIs to find potential errors, or bad practices, suggest fixes, and even implement those fixes.

docs/toc.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
### [Enums](csharp/tour-of-csharp/enums.md)
3333
### [Delegates](csharp/tour-of-csharp/delegates.md)
3434
### [Attributes](csharp/tour-of-csharp/attributes.md)
35-
## [🔧 Latest features](csharp/whats-new.md)
35+
## [Latest features](csharp/whats-new.md)
3636
### [🔧 What's new in C# 7](csharp/csharp-7.md)
3737
### [What's new in C# 6](csharp/csharp-6.md)
3838
## [🔧 C# Interactive](csharp/interactive.md)
3939
### [🔧 Using C# Interactive in Visual Studio](csharp/interactive-with-visualstudio.md)
4040
### [🔧 Using C# Interactive from Powershell](csharp/interactive-with-powershell.md)
41-
### [🔧 Using C# Interactive from MacOS or Linux Terminal](csharp/interactive-with-bash.md)
42-
## [C# Concepts](csharp/concepts.md)
41+
### [🔧 Using C# Interactive from macOS or Linux Terminal](csharp/interactive-with-bash.md)
42+
## [🔧 C# Concepts](csharp/concepts.md)
4343
### [🔧 C# Type system](csharp/type-system.md)
4444
### [🔧 Namespaces and Assemblies](csharp/namespaces-and-assemblies.md)
4545
### [Basic Types](csharp/basic-types.md)
@@ -228,6 +228,7 @@
228228
### [Code Formatting Guidelines](fsharp/language-reference/code-formatting-guidelines.md)
229229
<!-- End F# Content -->
230230

231+
<!-- .NET Standard Content -->
231232
# [.NET Standard](standard/index.md)
232233
## [.NET Standard Library](standard/library.md)
233234
## [Frameworks](standard/frameworks.md)
@@ -345,20 +346,22 @@
345346
### [Converting times between time zones](standard/datetime/converting-between-time-zones.md)
346347
### [How to: resolve ambiguous times](standard/datetime/resolve-ambiguous-times.md)
347348
### [How to: let users resolve ambiguous times](standard/datetime/let-users-resolve-ambiguous-times.md)
349+
<!-- End .NET Standard Content -->
348350

351+
<!-- .NET Core Content -->
349352
# [.NET Core Guide](core/index.md)
350353
## [Getting started](core/getting-started.md)
351354
## [Windows Prerequisites](core/windows-prerequisites.md)
352355
## [Tutorials](core/tutorials/index.md)
353356
### [Getting started with .NET Core on Windows](core/tutorials/using-on-windows.md)
354357
### [Getting started with .NET Core on macOS](core/tutorials/using-on-macos.md)
355-
### [Getting started with .NET Core on Windows/Linux/macOS using the command line](core/tutorials/using-with-xplat-cli.md)
358+
### [Getting started with .NET Core on using the command line](core/tutorials/using-with-xplat-cli.md)
356359
### [Developing Libraries with Cross Platform Tools](core/tutorials/libraries.md)
357360
### [Developing ASP.NET Core applications](core/tutorials/aspnet-core.md)
358361
### [How to Manage Package Dependency Versions for .NET Core 1.0](core/tutorials/managing-package-dependency-versions.md)
359362
### [Using MSBuild to build .NET Core projects](core/tutorials/target-dotnetcore-with-msbuild.md)
360363
## [Packages, Metapackages and Frameworks](core/packages.md)
361-
## [Deploying](core/deploying/index.md)
364+
## [Application Deployment](core/deploying/index.md)
362365
### [🔧 Deploying Applications](core/deploying/applications.md)
363366
### [Creating a NuGet Package with Cross Platform Tools](core/deploying/creating-nuget-packages.md)
364367
## [Docker](core/docker/index.md)
@@ -368,7 +371,7 @@
368371
### [Unit Testing with dotnet test](core/testing/unit-testing-with-dotnet-test.md)
369372
### [Unit testing with MSTest on Windows](core/testing/using-mstest-on-windows.md)
370373
## [Releases](core/versions/index.md)
371-
### [Servicing](core/versions/servicing.md)
374+
### [🔧 Servicing](core/versions/servicing.md)
372375
## [Runtime IDentifier catalog](core/rid-catalog.md)
373376
## [.NET Core Tools](core/tools/index.md)
374377
### [Telemetry](core/tools/telemetry.md)
@@ -394,10 +397,11 @@
394397
## [Migrating from DNX](core/migrating-from-dnx.md)
395398
<!-- End .NET Core Content -->
396399

400+
<!-- .NET Framework Content -->
397401
# [.NET Framework](framework/index.md)
398402
## [Docker](framework/docker/index.md)
399403
### [Running Console Apps in Containers](framework/docker/console.md)
400404
### [Running ASP.NET MVC Apps in Containers](framework/docker/aspnetmvc.md)
401-
405+
<!-- End .NET Framework Content -->
402406

403407
# [Samples and Tutorials](samples-and-tutorials/index.md)

0 commit comments

Comments
 (0)