-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (33 loc) · 2.03 KB
/
Copy pathDirectory.Build.props
File metadata and controls
35 lines (33 loc) · 2.03 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
<Project>
<Import Condition="Exists('version.props')" Project="version.props" />
<PropertyGroup>
<!-- Include PDBs in Nuget package. -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb; $(AllowedOutputExtensionsInPackageBuildOutputFolder)</AllowedOutputExtensionsInPackageBuildOutputFolder>
<!-- Copy all project dependencies to bin folder -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<!-- Enable IsPackable at individual project files -->
<IsPackable>false</IsPackable>
<Description>
FSharpx.Collections is a collection of datastructures for use with F# and C#.
</Description>
<Authors>Steffen Forkmann, Daniel Mohl, Tomas Petricek, Ryan Riley, Mauricio Scheffer, Phil Trelford, JackFox</Authors>
<Copyright>Copyright 2013-2021</Copyright>
<PackageTags>F# fsharp fsharpx collections datastructures</PackageTags>
<RepositoryUrl>https://github.com/fsprojects/FSharpx.Collections</RepositoryUrl>
<PackageProjectUrl>https://fsprojects.github.io/FSharpx.Collections/</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fsprojects/FSharpx.Collections/master/docs/img/logo.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageLicenseUrl>https://github.com/fsprojects/FSharpx.Collections/blob/master/LICENSE.txt</PackageLicenseUrl>
<FsDocsLogoLink>http://fsprojects.github.io/FSharpx.Collections/</FsDocsLogoLink>
<FsDocsLicenseLink>https://github.com/fsprojects/FSharpx.Collections/blob/master/LICENSE.txt</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/fsprojects/FSharpx.Collections/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
<FsDocsNavbarPosition>fixed-left</FsDocsNavbarPosition>
<FsDocsWarnOnMissingDocs>true</FsDocsWarnOnMissingDocs>
<FsDocsTheme>default</FsDocsTheme>
</PropertyGroup>
</Project>