-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathFSharp.Data.GraphQL.Server.fsproj
More file actions
54 lines (46 loc) · 2.1 KB
/
FSharp.Data.GraphQL.Server.fsproj
File metadata and controls
54 lines (46 loc) · 2.1 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
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(PackageTargetFrameworks)</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<Deterministic>true</Deterministic>
<Description>FSharp implementation of Facebook GraphQL query language (Server)</Description>
<!--<AssemblyOriginatorKeyFile>..\..\FSharp.Data.GraphQL.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>-->
</PropertyGroup>
<ItemGroup Label="InternalsVisibleTo">
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>FSharp.Data.GraphQL.Benchmarks</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>FSharp.Data.GraphQL.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Collections.Pooled" />
<PackageReference Include="FSharp.Control.Reactive" />
<PackageReference Include="System.Reactive" />
</ItemGroup>
<ItemGroup>
<Compile Include="ReflectionHelper.fs" />
<Compile Include="ErrorTypes.fs" />
<Compile Include="ErrorMessages.fs" />
<Compile Include="ErrorsProcessing.fs" />
<Compile Include="Exceptions.fs" />
<Compile Include="TypeSystem.fs" />
<Compile Include="Values.fs" />
<Compile Include="Planning.fs" />
<Compile Include="ObservableExtensions.fs" />
<Compile Include="IO.fs" />
<Compile Include="Execution.fs" />
<Compile Include="Executor.fs" />
<Compile Include="Schema.fs" />
<Compile Include="Linq.fs" />
<Compile Include="DefineExtensions.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>