Skip to content

Commit

Permalink
Back to net45
Browse files Browse the repository at this point in the history
  • Loading branch information
vbfox committed Feb 11, 2018
1 parent a079d0a commit 0947563
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 18 deletions.
4 changes: 4 additions & 0 deletions Release Notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### New in 1.0.1

* Target .Net 4.5 instead

### New in 1.0.0

* The library now targets .Net 4.0, .Net standard 1.6 and .Net standard 2.0
Expand Down
7 changes: 2 additions & 5 deletions src/BlackFox.MasterOfFoo/BlackFox.MasterOfFoo.fsproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.6;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net40;netstandard1.6;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net45;netstandard1.6;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Include="ReflectionCompat.fs" />
<Compile Include="FormatSpecification.fs" />
<Compile Include="PrintableElement.fs" />
<Compile Include="PrintfEnv.fs" />
Expand All @@ -16,8 +15,6 @@
<Compile Include="Core.PrintfCache.fs" />
<Compile Include="MasterOfFoo.fs" />

<PackageReference Include="FSharp.Core" Version="4.2.3" Condition="'$(TargetFramework)' == 'netstandard2.0'"/>
<PackageReference Include="FSharp.Core" Version="4.2.1" Condition="'$(TargetFramework)' == 'netstandard1.6'"/>
<PackageReference Include="FSharp.Core" Version="4.0.0.1" Condition="'$(TargetFramework)' == 'net40'"/>
<PackageReference Include="FSharp.Core" Version="4.2.3" />
</ItemGroup>
</Project>
13 changes: 0 additions & 13 deletions src/BlackFox.MasterOfFoo/ReflectionCompat.fs

This file was deleted.

0 comments on commit 0947563

Please sign in to comment.