Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

6 changes: 6 additions & 0 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@
"docs/visual-basic/language-reference/error-messages/**/**.md": "vb-diagnostics"
},
"titleSuffix": {
"docs/fsharp/tutorials/**/**.md": "F#",
"docs/fsharp/language-reference/**/**.md": "F#",
"docs/core/additional-tools/**.md": ".NET Core",
"docs/core/build/**.md": ".NET Core",
"docs/core/deploying/**.md": ".NET Core",
Expand All @@ -213,6 +215,10 @@
"docs/core/tools/**.md": ".NET Core CLI",
"docs/core/tutorials/**.md": ".NET Core",
"docs/core/versions/**.md": ".NET Core"
},
"ms.custom": {
"docs/fsharp/tutorials/**/**.md": "seodec18",
"docs/fsharp/language-reference/**/**.md": "seodec18"
}
},
"dest": "_site",
Expand Down
4 changes: 2 additions & 2 deletions docs/core/tools/using-ci-with-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ LOCALDOTNET="$INSTALLDIR/dotnet"

You can configure [Travis CI](https://travis-ci.org/) to install the .NET Core SDK using the `csharp` language and the `dotnet` key. For more information, see the official Travis CI docs on [Building a C#, F#, or Visual Basic Project](https://docs.travis-ci.com/user/languages/csharp/). Note as you access the Travis CI information that the community-maintained `language: csharp` language identifier works for all .NET languages, including F#, and Mono.

Travis CI runs both macOS and Linux jobs in a *build matrix*, where you specify a combination of runtime, environment, and exclusions/inclusions to cover your build combinations for your app. For more information, see the [.travis.yml example](https://github.com/dotnet/docs/blob/master/.travis.yml) file and [Customizing the Build](https://docs.travis-ci.com/user/customizing-the-build) in the Travis CI documentation. The MSBuild-based tools include the LTS (1.0.x) and Current (1.1.x) runtimes in the package; so by installing the SDK, you receive everything you need to build.
Travis CI runs both macOS and Linux jobs in a *build matrix*, where you specify a combination of runtime, environment, and exclusions/inclusions to cover your build combinations for your app. For more information, see the [Customizing the Build](https://docs.travis-ci.com/user/customizing-the-build) article in the Travis CI documentation. The MSBuild-based tools include the LTS (1.0.x) and Current (1.1.x) runtimes in the package; so by installing the SDK, you receive everything you need to build.

### AppVeyor

Expand Down Expand Up @@ -171,4 +171,4 @@ Two general approaches that you take in structuring the build process for .NET C

## See also

* [.NET downloads - Linux](https://dotnet.microsoft.com/download?initial-os=linux)
* [.NET downloads - Linux](https://dotnet.microsoft.com/download?initial-os=linux)
8 changes: 4 additions & 4 deletions docs/csharp/async.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: Asynchronous programming
title: Asynchronous programming - C#
description: Learn about the C# language-level asynchronous programming model provided by .NET Core.
author: cartermp
ms.date: 06/20/2016
ms.assetid: b878c34c-a78f-419e-a594-a2b44fa521a4
ms.custom: seodec18
---

# Asynchronous programming

If you have any I/O-bound needs (such as requesting data from a network or accessing a database), you'll want to utilize asynchronous programming. You could also have CPU-bound code, such as performing an expensive calculation, which is also a good scenario for writing async code.
Expand Down Expand Up @@ -259,5 +259,5 @@ A recommended goal is to achieve complete or near-complete [Referential Transpar
## Other Resources

* [Async in-depth](../standard/async-in-depth.md) provides more information about how Tasks work.
* [Asynchronous programming with async and await (C#)](../csharp/programming-guide/concepts/async/index.md)
* Lucian Wischik's [Six Essential Tips for Async](https://channel9.msdn.com/Series/Three-Essential-Tips-for-Async) are a wonderful resource for async programming
* [Asynchronous programming with async and await (C#)](./programming-guide/concepts/async/index.md)
* Lucian Wischik's [Six Essential Tips for Async](https://channel9.msdn.com/Series/Three-Essential-Tips-for-Async) are a wonderful resource for async programming

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading