-
Notifications
You must be signed in to change notification settings - Fork 17
/
Ply.fsproj
57 lines (48 loc) · 2.53 KB
/
Ply.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- General -->
<AssemblyName>Ply</AssemblyName>
<Version>0.3.1</Version>
<Description>A high performance TPL library for F#.</Description>
<Copyright>Copyright 2019 Crowded B.V.</Copyright>
<Authors>Nino Floris and contributors</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
<!-- Build settings -->
<TargetFramework>netstandard2.0</TargetFramework>
<DebugType>portable</DebugType>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- NuGet settings -->
<PackageId>Ply</PackageId>
<PackageTags>Ply;Tasks;TPL;F#;FSharp;Functional;Performance</PackageTags>
<RepositoryUrl>https://github.com/crowded/ply</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/crowded/ply</PackageProjectUrl>
<PackageReleaseNotes>https://raw.githubusercontent.com/crowded/ply/master/RELEASE_NOTES.md</PackageReleaseNotes>
<PackageIconUrl>https://raw.githubusercontent.com/crowded/ply/master/tools/icons/ply-128x128.png</PackageIconUrl>
<PackageIcon>ply-128x128.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<!-- SourceLink settings -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- disable sourcelink on mono, to workaround https://github.com/dotnet/sourcelink/issues/155 -->
<EnableSourceLink Condition=" '$(OS)' != 'Windows_NT' AND '$(MSBuildRuntimeType)' != 'Core' ">false</EnableSourceLink>
<EnableSourceControlManagerQueries>$(EnableSourceLink)</EnableSourceControlManagerQueries>
<AllowedOutputExtensionsInPackageBuildOutputFolder Condition=" '$(EnableSourceLink)' == 'true' ">$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<NoWarn>FS2003;FS0044</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.6.2" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>
<ItemGroup>
<Compile Include="Ply.fs" />
<Compile Include="ComputationBuilders.fs" />
</ItemGroup>
<ItemGroup>
<None Include="tools\icons\ply-128x128.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>