Skip to content

Commit 3c5e4ac

Browse files
Merge pull request #9 from bartelink/relax-fsharp-core
Maximize reach wrt FSharp.Core and netcoreapp versions re #6
2 parents fe9d777 + 6af501f commit 3c5e4ac

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

src/UnitsOfMeasure.Extra.fsproj

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33

44
<PropertyGroup>
55
<Version>1.0.0</Version>
6-
<PackageVersion>1.0.0-beta-005</PackageVersion>
6+
<PackageVersion>1.0.0-beta-006</PackageVersion>
77
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
8-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
8+
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
9+
<WarningLevel>5</WarningLevel>
10+
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
11+
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
912
</PropertyGroup>
1013

1114
<ItemGroup>
@@ -17,6 +20,7 @@
1720
</ItemGroup>
1821

1922
<ItemGroup>
20-
<PackageReference Update="FSharp.Core" Version="4.1.17" />
23+
<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' == 'net45' " />
24+
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />
2125
</ItemGroup>
22-
</Project>
26+
</Project>

tests/UnitsOfMeasure.Extra.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.2</TargetFramework>
4+
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)