Skip to content

Commit 72a4d87

Browse files
committed
Added src\Directory.Build.props
1 parent 06cbf7c commit 72a4d87

File tree

2 files changed

+34
-31
lines changed

2 files changed

+34
-31
lines changed

Directory.Build.props

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,4 @@
1010
<TreatWarningsAsErrors Condition="'$(Configuration)' != 'Debug'">true</TreatWarningsAsErrors>
1111
</PropertyGroup>
1212

13-
<PropertyGroup Label="NuGet">
14-
<Authors>John Bazinga, Andrii Chebukin, Jurii Chebukin, Ismael Carlos Velten, Valber M. Silva de Souza, njlr, Garrett Birkel</Authors>
15-
<Product>FSharp.Data.GraphQL</Product>
16-
<Summary>F# implementation of Facebook GraphQL query language</Summary>
17-
18-
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>
19-
<RepositoryUrl>https://github.com/fsprojects/FSharp.Data.GraphQL</RepositoryUrl>
20-
<RepositoryType>git</RepositoryType>
21-
<Version>3.0.0</Version>
22-
<PackageTags>FSharp GraphQL Relay React Middleware</PackageTags>
23-
<PackageReadmeFile>README.md</PackageReadmeFile>
24-
<PackageIcon>icon.png</PackageIcon>
25-
<!--<PackageIconUrl>https://www.newtonsoft.com/content/images/nugeticon.png</PackageIconUrl>-->
26-
<PackageProjectUrl>https://fsprojects.github.io/FSharp.Data.GraphQL</PackageProjectUrl>
27-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
28-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
29-
<IncludeSymbols>true</IncludeSymbols>
30-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
31-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
32-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
33-
</PropertyGroup>
34-
35-
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
36-
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
37-
</PropertyGroup>
38-
39-
<ItemGroup>
40-
<None Include="$(RepoRoot)\icon.png" Pack="true" PackagePath="\" />
41-
<None Include="$(RepoRoot)\README.md" Pack="true" PackagePath="\" />
42-
</ItemGroup>
43-
4413
</Project>

src/Directory.Build.props

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<Project>
2+
3+
<PropertyGroup Label="NuGet">
4+
<Authors>John Bazinga, Andrii Chebukin, Jurii Chebukin, Ismael Carlos Velten, Valber M. Silva de Souza, njlr, Garrett Birkel</Authors>
5+
<Product>FSharp.Data.GraphQL</Product>
6+
<Summary>F# implementation of Facebook GraphQL query language</Summary>
7+
8+
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>
9+
<RepositoryUrl>https://github.com/fsprojects/FSharp.Data.GraphQL</RepositoryUrl>
10+
<RepositoryType>git</RepositoryType>
11+
<Version>3.0.0</Version>
12+
<PackageTags>FSharp GraphQL Relay React Middleware</PackageTags>
13+
<PackageReadmeFile>README.md</PackageReadmeFile>
14+
<PackageIcon>icon.png</PackageIcon>
15+
<!--<PackageIconUrl>https://www.newtonsoft.com/content/images/nugeticon.png</PackageIconUrl>-->
16+
<PackageProjectUrl>https://fsprojects.github.io/FSharp.Data.GraphQL</PackageProjectUrl>
17+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
18+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19+
<IncludeSymbols>true</IncludeSymbols>
20+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
21+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
22+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
23+
</PropertyGroup>
24+
25+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
26+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
27+
</PropertyGroup>
28+
29+
<ItemGroup>
30+
<None Include="$(RepoRoot)\icon.png" Pack="true" PackagePath="\" />
31+
<None Include="$(RepoRoot)\README.md" Pack="true" PackagePath="\" />
32+
</ItemGroup>
33+
34+
</Project>

0 commit comments

Comments
 (0)