-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (26 loc) · 1.47 KB
/
Directory.Build.props
File metadata and controls
28 lines (26 loc) · 1.47 KB
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 xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WarningLevel>5</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<Description>A declarative command line and XML configuration parser for F# applications.</Description>
<Authors>Eirik Tsarpalis</Authors>
<Copyright>2019</Copyright>
<PackageTags>F#, argument, commandline, parser</PackageTags>
<!-- NOTE while ReproducibleBuilds/SourceLink derives the same value, other stuff in the FAKE fsx require this explicitly-->
<RepositoryUrl>https://github.com/fsprojects/Argu/</RepositoryUrl>
<RepositoryBranch>master</RepositoryBranch>
<PackageProjectUrl>https://fsprojects.github.io/Argu/</PackageProjectUrl>
<!-- fsdocs is SUPPOSED to be able to derive this from RepositoryUrl+RepositoryBranch, but I can't get it to work... -->
<FsDocsSourceRepository>https://github.com/fsprojects/Argu/tree/$(RepositoryBranch)</FsDocsSourceRepository>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<!-- FsDocs -->
<PropertyGroup>
<FsDocsLicenseLink>https://github.com/fsprojects/Argu/blob/master/LICENSE.md</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/fsprojects/Argu/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
</PropertyGroup>
</Project>