-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathFSharp.Data.GraphQL.Client.DesignTime.fsproj
More file actions
52 lines (47 loc) · 2.59 KB
/
FSharp.Data.GraphQL.Client.DesignTime.fsproj
File metadata and controls
52 lines (47 loc) · 2.59 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
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<DefineConstants>IS_DESIGNTIME;NO_GENERATIVE;$(DefineConstants)</DefineConstants>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<BaseOutputPath Condition="$(IsNuGet) == ''">..\FSharp.Data.GraphQL.Client\bin</BaseOutputPath>
<Description>FSharp implementation of Facebook GraphQL query language (Client)</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" VersionOverride="$(FSharpCoreVersion)">
<PrivateAssets>all</PrivateAssets>
<!-- This excludes FSharp.Core.xml and FSharp.Core.resources.dll while referencing the right FSharp.Core.dll version -->
<ExcludeAssets>contentFiles;runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="FSharp.TypeProviders.SDK" VersionOverride="8.1.0" />
<PackageReference Include="FSharp.SystemTextJson" />
<PackageReference Include="FsToolkit.ErrorHandling" />
<PackageReference Include="FParsec" />
<PackageReference Include="Microsoft.Extensions.Http">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\FSharp.Data.GraphQL.Client\MimeTypes.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\Extensions.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\Schema.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\ReflectionPatterns.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\Upload.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\Serialization.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\Locations.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\BaseTypes.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\GraphQLClientConnection.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\GraphQLClient.fs" />
<Compile Include="..\FSharp.Data.GraphQL.Client\GraphQLProviderRuntimeContext.fs" />
<Compile Include="DesignTimeCache.fs" />
<Compile Include="ProvidedTypesHelper.fs" />
<Compile Include="GraphQLProvider.DesignTime.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
</ItemGroup>
</Project>