forked from fabulous-dev/Fabulous
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (35 loc) · 2.17 KB
/
Directory.Build.props
File metadata and controls
35 lines (35 loc) · 2.17 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
29
30
31
32
33
34
35
<Project>
<!-- NuGet Specs -->
<PropertyGroup>
<Version>0.52.0</Version>
<Authors>Fabulous Contributors</Authors>
<PackageVersion>0.52.0</PackageVersion>
<PackageReleaseNotes>[Fabulous.XamarinForms] Added support for Xamarin.Forms 4.4 (https://github.com/fsprojects/Fabulous/pull/644)
[Fabulous.XamarinForms] Fixed an issue with Minimum/Maximum in Slider/Stepper (https://github.com/fsprojects/Fabulous/pull/640 & https://github.com/fsprojects/Fabulous/pull/643)
[Fabulous.XamarinForms] [Extensions] Changed the `ref` parameter to be a typed ViewRef in extensions (https://github.com/fsprojects/Fabulous/pull/636)</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/fsprojects/Fabulous</PackageProjectUrl>
<PackageTags>F#;Elmish;Elm;$(PackageTags)</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
</PropertyGroup>
<PropertyGroup>
<!-- Support for arbitrary value in AssemblyInformationalVersionAttribute https://github.com/Microsoft/visualfsharp/issues/4822 -->
<NoWarn>FS2003</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework) == 'netstandard2.0' OR $(TargetFramework) == 'netcoreapp2.2' OR $(TargetFramework) == 'netcoreapp3.1'">
<OtherFlags>/warnon:1182</OtherFlags>
</PropertyGroup>
<PropertyGroup Condition="($(IsPackable) == '' OR $(IsPackable) == 'true') AND $(Configuration) == 'Release'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework) == 'netstandard2.0'">
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
</Project>