forked from MangelMaxime/Fable.Form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
26 lines (26 loc) · 1.24 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
<Project>
<PropertyGroup>
<!-- Make all the projects use the highest warning level -->
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<!-- Packages common to all the projects -->
<ItemGroup>
<!-- Reproducible builds + SourceLink supports -->
<!-- <PackageReference Include="DotNet.ReproducibleBuilds" Version="0.1.26" PrivateAssets="All"/> -->
<!-- Depends on the same version of FSharp.Core for all the projects -->
<!-- We don't use any feature related to FSharp.Core 5 so we force to use a lower one -->
<!-- <PackageReference Update="FSharp.Core" Version="4.7.2" /> -->
</ItemGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<PackageProjectUrl>https://mangelmaxime.gitbook.io/fable-form/</PackageProjectUrl>
<RepositoryUrl>https://github.com/MangelMaxime/Fable.Form</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>Maxime Mangel</Authors>
</PropertyGroup>
<ItemGroup>
<Content Include="*.fsproj; **\*.fs; **\*.fsi; **\*.css" PackagePath="fable" />
<None Include="$(MSBuildThisFileDirectory)\LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
</Project>