Fix MD format error

This commit is contained in:
Alexander Horner 2019-09-14 13:28:29 +01:00 committed by GitHub
parent 9e7edbaefa
commit 664fbdedde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ This action sets up a dotnet environment for use in actions by:
See [action.yml](action.yml) See [action.yml](action.yml)
##Basic: ## Basic:
```yaml ```yaml
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
@ -23,7 +23,7 @@ steps:
- run: dotnet build <my project> - run: dotnet build <my project>
``` ```
##Matrix Testing: ## Matrix Testing:
```yaml ```yaml
jobs: jobs:
build: build:
@ -41,7 +41,7 @@ jobs:
- run: dotnet build <my project> - run: dotnet build <my project>
``` ```
##Publishing a standalone copy for Release execution (include all dependencies): ## Publishing a standalone copy for Release execution (include all dependencies):
```yaml ```yaml
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@ -52,7 +52,7 @@ steps:
run: dotnet publish --configuration Release run: dotnet publish --configuration Release
``` ```
##Publishing a standalone copy for Release execution (include all dependencies with specified NuGet sources): ## Publishing a standalone copy for Release execution (include all dependencies with specified NuGet sources):
```yaml ```yaml
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@ -62,7 +62,7 @@ steps:
- name: Build + Publish with dotnet - name: Build + Publish with dotnet
run: dotnet publish --configuration Release run: dotnet publish --configuration Release
``` ```
###Your nuget.config may look like so, just add your sources under the default source ### Your nuget.config may look like so, just add your sources under the default source
```xml ```xml
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>