Skip to content

Commit 5f028d9

Browse files
authored
Support only net5.0 (#828)
* Support only net5.0
1 parent 81738d9 commit 5f028d9

File tree

26 files changed

+27854
-958
lines changed

26 files changed

+27854
-958
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,26 +47,20 @@ Start the client by following instructions below:
4747

4848
```bash
4949
# Install dependencies
50-
src\graphql.server.link> yarn install
51-
52-
# Link the server-link
53-
src\graphql.server.link> yarn link
50+
src\graphql.server.link> npm i
5451

5552
# Watch for source changes and recompile the link
56-
src\graphql.server.link> yarn watch
53+
src\graphql.server.link> npm run watch
5754

5855
# Install dependencies
59-
dev\graphql.dev.chat.ui> yarn install
60-
61-
# Use the linked server-link
62-
dev\graphql.dev.chat.ui> yarn link @tanka/tanka-graphql-server-link
56+
dev\graphql.dev.chat.ui> npm i
6357

6458
# Watch for source changes and recompile the sample
65-
dev\graphql.dev.chat.ui> yarn start
59+
dev\graphql.dev.chat.ui> npm start
6660
```
6761

6862
### Run benchmarks
6963

7064
```bash
71-
src\graphql.benchmarks> dotnet run --configuration release --framework netcoreapp22
65+
src\graphql.benchmarks> dotnet run --configuration release --framework net5.0
7266
```

benchmarks/graphql.benchmarks/graphql.benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
5+
<TargetFramework>net5.0</TargetFramework>
66
<AssemblyName>graphql.benchmarks</AssemblyName>
77
<RootNamespace>Tanka.GraphQL.Benchmarks</RootNamespace>
88
<IsPackable>false</IsPackable>

dev/graphql.dev.chat.data/graphql.dev.chat.data.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
4+
<TargetFramework>net5.0</TargetFramework>
55
<AssemblyName>Tanka.GraphQL.Samples.Chat.Data</AssemblyName>
66
<RootNamespace>Tanka.GraphQL.Samples.Chat.Data</RootNamespace>
77
<IsPackable>false</IsPackable>

dev/graphql.dev.chat.ui/README.md

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)