Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Prerequisites

1. Install [.NET Core 3.1 SDK ](https://dotnet.microsoft.com/download)
1. Install [.NET Core 5.0 Preview 7 SDK ](https://dotnet.microsoft.com/download/dotnet/5.0)
1. Install [Node.js](https://nodejs.org/en/)

# Setup
Expand Down Expand Up @@ -49,11 +49,11 @@ TodoReact> npm start
```
Tutorial>dotnet new feather -n TodoApi
Tutorial> cd TodoApi
TodoApi> dotnet add package Microsoft.EntityFrameworkCore.InMemory --version 3.1
TodoApi> dotnet add package Microsoft.EntityFrameworkCore.InMemory --version 5.0.0-preview.7.20365.15
```
- The commands above
- create a new FeatherHttp application `dotnet new feather -n TodoApi`
- Adds the NuGet packages required in the next section `dotnet add package Microsoft.EntityFrameworkCore.InMemory --version 3.1`
- Adds the NuGet packages required in the next section `dotnet add package Microsoft.EntityFrameworkCore.InMemory --version 5.0.0-preview.7.20365.15`

2. Open the `TodoApi` Folder in editor of your choice.

Expand Down Expand Up @@ -266,3 +266,4 @@ TodoApi> dotnet add package Microsoft.EntityFrameworkCore.InMemory --version 3.1

The application should now be fully functional.
![image](https://user-images.githubusercontent.com/2546640/75119891-08ea4080-5655-11ea-96be-adab4990ad65.png)

5 changes: 2 additions & 3 deletions Sample/TodoApi/TodoApi.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FeatherHttp" Version="0.1.59-alpha.g2c306f941a" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.0-preview.7.20365.15" />
</ItemGroup>
</Project>
Loading