Skip to content

Commit

Permalink
Props (#3029)
Browse files Browse the repository at this point in the history
* Remove comment ifdefs

* Add Microsoft.NET.Sdk.FSharp.props

* Make TargetFrameworks work

* restore {BuildSuffix}

* rename sdk targets and props, refactor project logic into our repo

* wrong name

* Add automagic FSharp.Core reference for coreclr

* Set <DefaultProjectTypeGuid to F# project system guid

* Fix setup

* Update sdk props

* Typo for net461
  • Loading branch information
KevinRansom authored May 11, 2017
1 parent 50980ff commit 9e80078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fsharp/FSharp.Build/Microsoft.FSharp.NetSdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and

<PropertyGroup Condition=" '$(DisableAutoValueTupleReference)' != 'true' ">
<FrameworkNeedsValueTupleReference Condition=" $(TargetFramework.StartsWith(netcoreapp1.)) or $(TargetFramework.StartsWith(netstandard1.)) ">true</FrameworkNeedsValueTupleReference>
<FrameworkNeedsValueTupleReference Condition=" '$(TargetFramework)' == 'net40' or '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'net46' or '$(TargetFramework)' == 'net61' or '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net47' ">true</FrameworkNeedsValueTupleReference>
<FrameworkNeedsValueTupleReference Condition=" '$(TargetFramework)' == 'net40' or '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'net46' or '$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net47' ">true</FrameworkNeedsValueTupleReference>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' != '' ">
Expand Down

0 comments on commit 9e80078

Please sign in to comment.