-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDirectory.Build.props
31 lines (31 loc) · 1.41 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
29
30
31
<Project>
<!-- Make F# support Central Package Management -->
<PropertyGroup>
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<!-- Use lock files -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</RestoreLockedMode>
</PropertyGroup>
<PropertyGroup>
<!-- Make all the projects use the highest warning level -->
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<PackageProjectUrl>https://mangelmaxime.gitbook.io/fable-form/</PackageProjectUrl>
<RepositoryUrl>https://github.com/MangelMaxime/Fable.Form</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Maxime Mangel</Authors>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>