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:
authorJan Kotas <jkotas@microsoft.com>2018-01-11 11:25:41 +0300
committerGitHub <noreply@github.com>2018-01-11 11:25:41 +0300
commita08be66e9134f061799a9593cd4e18adcb76b3b6 (patch)
tree0b6b47026263577f0703669b87db239723911e1a /samples/WebApi
parent5a6bca681a3be39d8cc1d6bf3fee111631a585b8 (diff)
Add MonoGame sample (#5225)
Diffstat (limited to 'samples/WebApi')
-rw-r--r--samples/WebApi/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/WebApi/README.md b/samples/WebApi/README.md
index a47f25e12..e96b31efa 100644
--- a/samples/WebApi/README.md
+++ b/samples/WebApi/README.md
@@ -126,7 +126,7 @@ Once the package has been successfully added it's time to compile and publish yo
> dotnet publish -r <RID> -c <Configuration>
```
-where `<Configuration>` is your project configuration (such as Debug or Release) and `<RID>` is the runtime identifier, which you specified in the csproj file (one of win-x64, linux-x64, osx-x64). For example, if you want to publish a release configuration of your app for a 64-bit version of Windows the command would look like:
+where `<Configuration>` is your project configuration (such as Debug or Release) and `<RID>` is the runtime identifier (one of win-x64, linux-x64, osx-x64). For example, if you want to publish a release configuration of your app for a 64-bit version of Windows the command would look like:
```bash
> dotnet publish -r win-x64 -c release