Skip to content

Commit a3890fe

Browse files
author
Bart Koelman
committed
Merge branch 'master' into openapi
2 parents 7090011 + 69bb428 commit a3890fe

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src ="https://raw.githubusercontent.com/json-api-dotnet/JsonApiDotnetCore/master/logo.png" />
2+
<img src ="https://raw.githubusercontent.com/json-api-dotnet/JsonApiDotNetCore/master/logo.png" />
33
</p>
44

55
# JsonApiDotNetCore

docs/getting-started/install.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Installation
22

3-
Click [here](https://www.nuget.org/packages/JsonApiDotnetCore/) for the latest NuGet version.
3+
Click [here](https://www.nuget.org/packages/JsonApiDotNetCore/) for the latest NuGet version.
44

55
### CLI
66

77
```
8-
dotnet add package JsonApiDotnetCore
8+
dotnet add package JsonApiDotNetCore
99
```
1010

1111
### Visual Studio
1212

1313
```powershell
14-
Install-Package JsonApiDotnetCore
14+
Install-Package JsonApiDotNetCore
1515
```
1616

1717
### *.csproj

docs/getting-started/step-by-step.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ dotnet new webapi
2525
### Install
2626

2727
```
28-
dotnet add package JsonApiDotnetCore
28+
dotnet add package JsonApiDotNetCore
2929
3030
- or -
3131
32-
Install-Package JsonApiDotnetCore
32+
Install-Package JsonApiDotNetCore
3333
```
3434

3535
### Define Models

src/Examples/GettingStarted/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
You can verify the project is running by checking this endpoint:
88
`localhost:14141/api/people`
99

10-
For further documentation and implementation of a JsonApiDotnetCore Application see the documentation or GitHub page:
10+
For further documentation and implementation of a JsonApiDotNetCore Application see the documentation or GitHub page:
1111

1212
Repository: https://github.com/json-api-dotnet/JsonApiDotNetCore
1313

src/Examples/JsonApiDotNetCoreExample/Program.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using JsonApiDotNetCoreExample.Startups;
21
using Microsoft.AspNetCore.Hosting;
32
using Microsoft.Extensions.Hosting;
43

src/Examples/JsonApiDotNetCoreExample/Startups/Startup.cs renamed to src/Examples/JsonApiDotNetCoreExample/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Newtonsoft.Json;
1313
using Newtonsoft.Json.Converters;
1414

15-
namespace JsonApiDotNetCoreExample.Startups
15+
namespace JsonApiDotNetCoreExample
1616
{
1717
public sealed class Startup
1818
{

0 commit comments

Comments
 (0)