|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <Authors>F# Software Foundation; Microsoft; F# Contributors</Authors> |
| 6 | + <Summary>The core library for F#</Summary> |
| 7 | + <Description>The core library F#</Description> |
| 8 | + <Copyright>Copyright 2003-2020</Copyright> |
| 9 | + <PackageLicenseUrl>https://github.com/dotnet/fsharp/blob/master/License.txt</PackageLicenseUrl> |
| 10 | + <PackageProjectUrl>https://github.com/fsharp/fsharp-core-api-docs/</PackageProjectUrl> |
| 11 | + <PackageIconUrl>https://fsharp.org/img/logo/fsharp128.png</PackageIconUrl> |
| 12 | + <PackageTags>F#;async;fsharp;streaming</PackageTags> |
| 13 | + <IncludeSymbols>true</IncludeSymbols> |
| 14 | + <RepositoryUrl>https://github.com/dotnet/fsharp/</RepositoryUrl> |
| 15 | + <RepositoryType>git</RepositoryType> |
| 16 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 17 | + <OutputType>Library</OutputType> |
| 18 | + <IsTestProject>false</IsTestProject> |
| 19 | + <IsPackable>true</IsPackable> |
| 20 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 21 | + <PackageVersion>4.7.2</PackageVersion> |
| 22 | + <DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference> |
| 23 | + <!-- <TargetPath>$(MSBuildThisFileDirectory)..\packages\FSharp.Core\lib\netstandard2.0\FSharp.Core.dll</TargetPath> --> |
| 24 | + |
| 25 | + <!-- for a parallel checkout and build of fsharp --> |
| 26 | + <TargetPath Condition="Exists('..\..\fsharp\build.cmd')">$(MSBuildThisFileDirectory)..\..\fsharp\artifacts\bin\FSharp.Core\Debug\netstandard2.0\FSharp.Core.dll</TargetPath> |
| 27 | + |
| 28 | + <!-- for a local checkout and build of fsharp in CI --> |
| 29 | + <TargetPath Condition="Exists('..\fsharp\build.cmd')">$(MSBuildThisFileDirectory)..\fsharp\artifacts\bin\FSharp.Core\Debug\netstandard2.0\FSharp.Core.dll</TargetPath> |
| 30 | + </PropertyGroup> |
| 31 | +</Project> |
| 32 | + |
0 commit comments