-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathFSharp.Core.fsproj
43 lines (37 loc) · 2.27 KB
/
FSharp.Core.fsproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>F# Software Foundation; Microsoft; F# Contributors</Authors>
<Summary>The core library for F#</Summary>
<Description>The core library F#</Description>
<Copyright>Copyright 2003-2020</Copyright>
<IncludeSymbols>true</IncludeSymbols>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<OutputType>Library</OutputType>
<IsTestProject>false</IsTestProject>
<IsPackable>true</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageVersion>6.0.3</PackageVersion>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<!-- <TargetPath>$(MSBuildThisFileDirectory)..\packages\FSharp.Core\lib\netstandard2.1\FSharp.Core.dll</TargetPath> -->
<!-- for a parallel checkout and build of fsharp -->
<TargetPath Condition="Exists('..\..\fsharp\build.cmd')">$(MSBuildThisFileDirectory)..\..\fsharp\artifacts\bin\FSharp.Core\Debug\netstandard2.1\FSharp.Core.dll</TargetPath>
<!-- for a local checkout and build of fsharp in CI -->
<TargetPath Condition="Exists('..\fsharp\build.cmd')">$(MSBuildThisFileDirectory)..\fsharp\artifacts\bin\FSharp.Core\Debug\netstandard2.1\FSharp.Core.dll</TargetPath>
</PropertyGroup>
<PropertyGroup>
<!-- styling and generation settings for FsDocs default template-->
<PackageLicenseUrl>https://github.com/dotnet/fsharp/blob/main/License.txt</PackageLicenseUrl>
<PackageProjectUrl>https://fsharp.github.io/fsharp-core-docs/</PackageProjectUrl>
<PackageIconUrl>https://fsharp.org/img/logo/fsharp128.png</PackageIconUrl>
<PackageTags>F#;async;fsharp;streaming</PackageTags>
<RepositoryUrl>https://github.com/dotnet/fsharp/</RepositoryUrl>
<FsDocsLogoLink>https://fsharp.org</FsDocsLogoLink>
<FsDocsLicenseLink>https://github.com/dotnet/fsharp/blob/main/License.txt</FsDocsLicenseLink>
<FsDocsRepositoryBranch>main</FsDocsRepositoryBranch>
<FsDocsReleaseNotesLink>https://github.com/dotnet/fsharp/blob/main/release-notes.md</FsDocsReleaseNotesLink>
<RepositoryType>git</RepositoryType>
<FsDocsWarnOnMissingDocs>true</FsDocsWarnOnMissingDocs>
</PropertyGroup>
</Project>