-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathFSharp.Data.GraphQL.Client.fsproj
More file actions
44 lines (38 loc) · 1.57 KB
/
FSharp.Data.GraphQL.Client.fsproj
File metadata and controls
44 lines (38 loc) · 1.57 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
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<FSharpToolsDirectory>typeproviders</FSharpToolsDirectory>
<PackagePath>typeproviders</PackagePath>
<Description>FSharp implementation of Facebook GraphQL query language (Client)</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" VersionOverride="4.7.2"/>
<None Include="..\..\icon.png" Pack="true" PackagePath="" Visible="False" />
<None Include="..\..\README.md" Pack="true" PackagePath="" Visible="False" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" />
</ItemGroup>
<ItemGroup>
<Compile Include="MimeTypes.fs" />
<Compile Include="TextConversions.fs" />
<Compile Include="JsonValue.fsi" />
<Compile Include="JsonValue.fs" />
<Compile Include="Extensions.fs" />
<Compile Include="Schema.fs" />
<Compile Include="ReflectionPatterns.fs" />
<Compile Include="Upload.fs" />
<Compile Include="Serialization.fs" />
<Compile Include="Locations.fs" />
<Compile Include="BaseTypes.fs" />
<Compile Include="GraphQLClientConnection.fs" />
<Compile Include="GraphQLClient.fs" />
<Compile Include="GraphQLProviderRuntimeContext.fs" />
<Compile Include="GraphQLProvider.Runtime.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
</ItemGroup>
</Project>