Skip to content

Commit b4978c6

Browse files
author
Oren Novotny
committed
Update Rx.NET to use NETStandard.Library only for netstandard1.x
1 parent 08ee425 commit b4978c6

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Rx.NET/Source/NuSpecs/System.Reactive.Interfaces.nuspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
<language>en-US</language>
1616
<tags>Rx Reactive Extensions Observable LINQ Events</tags>
1717
<dependencies>
18-
<dependency id="NETStandard.Library" version="1.6.0" />
18+
<group targetFramework="netstandard1.0">
19+
<dependency id="NETStandard.Library" version="1.6.0" />
20+
</group>
21+
<group targetFramework="net45" />
1922
</dependencies>
2023
</metadata>
2124
<files>

Rx.NET/Source/System.Reactive.Interfaces/project.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@
2222
"includeFiles": [ "../GlobalAssemblyVersion.cs" ]
2323
}
2424
},
25-
26-
"dependencies": {
27-
"NETStandard.Library": "1.6.0"
28-
},
29-
25+
3026
"frameworks": {
3127
"net45": {
3228
"buildOptions": {
@@ -64,6 +60,9 @@
6460
"USE_TIMER_SELF_ROOT",
6561
"PLIB"
6662
]
63+
},
64+
"dependencies": {
65+
"NETStandard.Library": "1.6.0"
6766
}
6867
}
6968
}

0 commit comments

Comments
 (0)