@@ -10,7 +10,6 @@ JsonApiDotnetCore provides a framework for building [json:api](http://jsonapi.or
1010
1111# Table Of Contents
1212- [ Installation] ( #installation )
13- - [ Generators] ( #generators )
1413- [ Usage] ( #usage )
1514 - [Middleware and Services](#middleware-and-services)
1615 - [Defining Models](#defining-models)
@@ -42,14 +41,14 @@ Install-Package JsonApiDotnetCore
4241
4342- project.json
4443``` json
45- "JsonApiDotNetCore" : " 1.3 .0"
44+ "JsonApiDotNetCore" : " 2.0 .0"
4645```
4746
4847- * .csproj
4948``` xml
5049<ItemGroup >
5150 <!-- ... -->
52- <PackageReference Include =" JsonApiDotNetCore" Version =" 1.3 .0" />
51+ <PackageReference Include =" JsonApiDotNetCore" Version =" 2.0 .0" />
5352</ItemGroup >
5453```
5554
@@ -59,22 +58,14 @@ For pre-releases, add the [MyGet](https://www.myget.org/feed/Details/research-in
5958(https://www.myget.org/F/research-institute/api/v3/index.json )
6059to your nuget configuration.
6160
62- ## Generators
63-
64- You can install the [ Yeoman generators] ( https://github.com/Research-Institute/json-api-dotnet-core-generators )
65- to make building applications much easier.
66-
6761## Usage
6862
69- You need to do 3 things:
63+ The most basic use case requires 3 things:
7064
7165- Add Middleware and Services
7266- Define Models
7367- Define Controllers
7468
75- I recommend reading the details below, but once you're familiar with the
76- setup, you can use the Yeoman generator to generate the required classes.
77-
7869### Middleware and Services
7970
8071Add the following to your ` Startup.ConfigureServices ` method.
0 commit comments