Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA-And <andon@andonov.xyz>2018-01-02 09:43:52 +0300
committerA-And <andon@andonov.xyz>2018-01-02 09:43:52 +0300
commita15e1a91e4866a351e3af1150828b8d2cd9a4eb3 (patch)
treeabcf3099a885194a575726aedb54824a71c6a9b5 /samples/WebApi
parent36f314764756096e8bae72846f7ff14d2d334d1d (diff)
Respond to PR feedback
Diffstat (limited to 'samples/WebApi')
-rw-r--r--samples/WebApi/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/WebApi/README.md b/samples/WebApi/README.md
index be6e4cc04..1743fa330 100644
--- a/samples/WebApi/README.md
+++ b/samples/WebApi/README.md
@@ -1,14 +1,14 @@
-# Description
-This is a sample application, which uses CoreRT to compile a .NET Core Web API sample.
# Building a WebAPI app with CoreRT
+This document will guide you through compiling a .NET Core Web API application with CoreRT.
+
## Install the .NET Core SDK
CoreRT is an AOT-optimized .NET Core runtime. If you're new to .NET Core make sure to visit the [official starting page](http://dotnet.github.io). It will guide you through installing pre-requisites and building your first app.
If you're already familiar with .NET Core make sure you've [downloaded and installed the .NET Core 2 SDK](https://www.microsoft.com/net/download/core).
## Create your app
-Open a **new** shell/command prompt window and run the following commands.
+Open a new shell/command prompt window and run the following commands.
```
> dotnet new webapi -o myApp
> cd myApp