-
Notifications
You must be signed in to change notification settings - Fork 156
/
Directory.Build.props
28 lines (28 loc) · 1.15 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup Condition="'$(APPVEYOR_BUILD_VERSION)' != ''">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<Deterministic>true</Deterministic>
<Copyright>Copyright 2008-2024</Copyright>
<Authors>Kurt Schelfthout and contributors</Authors>
<PackageTags>F# fsharp test random</PackageTags>
<RepositoryUrl>https://github.com/Fscheck/fscheck</RepositoryUrl>
<PackageProjectUrl>https://fscheck.github.io/FsCheck/</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<DebugType>embedded</DebugType>
<PackageIcon>logo.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>test;testing;random;fscheck;quickcheck</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="../../docs/img/logo.png" Condition="'$(IsPackable)' == 'true'" >
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>