Skip to content

Commit 7570a5d

Browse files
authored
Merge pull request #185 from bartelink/trim-tfms
fix(deps): Remove redundant TFM-specific builds
2 parents e215088 + eed4f9f commit 7570a5d

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

Directory.Build.props

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717

1818
<PackageReleaseNotes>
1919
14.4.2
20-
- Thanks @bartelink: Pinned FSharp.Core to 5.0.2 in all library projects
20+
- Thanks @bartelink
21+
Pinned FSharp.Core to 5.0.2 in all library projects
22+
Removed net7.0, net8.0 TFM-specific builds
2123

2224
14.4.1
2325
- Fixed missing explicit dependency on FSharp.Core

src/FsHttp.FSharpData/FsHttp.FSharpData.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net6.0</TargetFrameworks>
4+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
45
<Configurations>Debug;Release</Configurations>
56
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

src/FsHttp.NewtonsoftJson/FsHttp.NewtonsoftJson.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net6.0</TargetFrameworks>
4+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
45
<Configurations>Debug;Release</Configurations>
56
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

src/FsHttp/FsHttp.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net6.0</TargetFrameworks>
4+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
45
<Configurations>Debug;Release</Configurations>
56
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)