-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscriptionIssueRepro.csproj
33 lines (27 loc) · 1.23 KB
/
SubscriptionIssueRepro.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<LangVersion>7.2</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<AssemblyName>SubscriptionIssueRepro</AssemblyName>
<RootNamespace>SubscriptionIssueRepro</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="10.2.0" />
<PackageReference Include="HotChocolate.AspNetCore.GraphiQL" Version="10.2.0" />
<PackageReference Include="HotChocolate.AspNetCore.Playground" Version="10.2.0" />
<PackageReference Include="HotChocolate.AspNetCore.Authorization" Version="10.2.0" />
<PackageReference Include="HotChocolate.Subscriptions.InMemory" Version="10.2.0" />
</ItemGroup>
</Project>