Skip to content

Commit

Permalink
Update Rx.NET to use NETStandard.Library only for netstandard1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Nov 20, 2016
1 parent 08ee425 commit b4978c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 4 additions & 1 deletion Rx.NET/Source/NuSpecs/System.Reactive.Interfaces.nuspec
Expand Up @@ -15,7 +15,10 @@
<language>en-US</language>
<tags>Rx Reactive Extensions Observable LINQ Events</tags>
<dependencies>
<dependency id="NETStandard.Library" version="1.6.0" />
<group targetFramework="netstandard1.0">
<dependency id="NETStandard.Library" version="1.6.0" />
</group>
<group targetFramework="net45" />
</dependencies>
</metadata>
<files>
Expand Down
9 changes: 4 additions & 5 deletions Rx.NET/Source/System.Reactive.Interfaces/project.json
Expand Up @@ -22,11 +22,7 @@
"includeFiles": [ "../GlobalAssemblyVersion.cs" ]
}
},

"dependencies": {
"NETStandard.Library": "1.6.0"
},


"frameworks": {
"net45": {
"buildOptions": {
Expand Down Expand Up @@ -64,6 +60,9 @@
"USE_TIMER_SELF_ROOT",
"PLIB"
]
},
"dependencies": {
"NETStandard.Library": "1.6.0"
}
}
}
Expand Down

0 comments on commit b4978c6

Please sign in to comment.