-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
29 lines (25 loc) · 1.22 KB
/
Directory.Build.targets
File metadata and controls
29 lines (25 loc) · 1.22 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
<Project>
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
<PropertyGroup>
<LangVersion>6.0</LangVersion>
<!--<NoWarn>$(NoWarn)</NoWarn>-->
<TreatWarningsAsErrors Condition="'$(Configuration)' != 'Debug'">true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Label="NuGet">
<Authors>John Bazinga, Andrii Chebukin, </Authors>
<Product>FSharp.Data.GraphQL</Product>
<Summary>F# implementation of Facebook GraphQL query language</Summary>
<PackageVersion>1.1.0</PackageVersion>
<PackageTags>FSharp GraphQL Relay React Middleware</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!--<PackageIcon>packageIcon.png</PackageIcon>-->
<!--<PackageIconUrl>https://www.newtonsoft.com/content/images/nugeticon.png</PackageIconUrl>-->
<PackageProjectUrl>https://fsprojects.github.io/FSharp.Data.GraphQL</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
</Project>