-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathP7Core.GraphQLCore.csproj
More file actions
38 lines (37 loc) · 1.82 KB
/
P7Core.GraphQLCore.csproj
File metadata and controls
38 lines (37 loc) · 1.82 KB
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
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/ghstahl/GraphQL.Play.2.2</PackageProjectUrl>
<RepositoryUrl>https://github.com/ghstahl/GraphQL.Play.2.2</RepositoryUrl>
<Authors>Herb Stahl</Authors>
<IsPackable>true</IsPackable>
<AssemblyName>P7Core.GraphQLCore</AssemblyName>
<RootNamespace>P7Core.GraphQLCore</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Link="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GraphQL" Version="2.4.0" />
<PackageReference Include="GraphQL-Parser" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="P7Corp.P7Core" Version="1.0.0-beta-12" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphQLPlay.Contracts\GraphQLPlay.Contracts.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="netstandard">
<HintPath>c:\program files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\netstandard.dll</HintPath>
</Reference>
</ItemGroup>
</Project>