Skip to content

Commit 41d4adf

Browse files
author
Elad Zelingher
committed
Trying to make uap10.0 work with DispatchProxy
1 parent bed418a commit 41d4adf

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

NuGet/WampSharp.nuspec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,22 @@
3838
<dependency id="System.Security.Cryptography.Algorithms" version="[4.2.0, )" />
3939
<dependency id="System.Text.RegularExpressions" version="[4.1.0, )" />
4040
</group>
41+
<group targetFramework="UAP10.0">
42+
<dependency id="Microsoft.CSharp" version="[4.0.1, )" />
43+
<dependency id="System.Threading.Tasks.Dataflow" version="[4.6.0, )" />
44+
<dependency id="System.Collections.Concurrent" version="[4.0.12, )" />
45+
<dependency id="System.Collections.Immutable" version="[1.2.0, )" />
46+
<dependency id="System.ComponentModel" version="[4.0.1, )" />
47+
<dependency id="System.Net.Primitives" version="[4.0.11, )" />
48+
<dependency id="System.Reactive" version="[3.0.0, )" />
49+
<dependency id="System.Reflection.Extensions" version="[4.0.1, )" />
50+
<dependency id="System.Reflection.DispatchProxy" version="[4.0.1, )" />
51+
<dependency id="System.Reflection.TypeExtensions" version="[4.1.0, )" />
52+
<dependency id="System.Runtime" version="[4.1.0, )" />
53+
<dependency id="System.Runtime.Serialization.Primitives" version="[4.1.1, )" />
54+
<dependency id="System.Security.Cryptography.Algorithms" version="[4.2.0, )" />
55+
<dependency id="System.Text.RegularExpressions" version="[4.1.0, )" />
56+
</group>
4157
</dependencies>
4258
<id>WampSharp</id>
4359
<title>WampSharp</title>
@@ -55,5 +71,7 @@
5571
<file src="bin\pcl\WampSharp.xml" target="lib\portable-win81+wpa81\WampSharp.xml" />
5672
<file src="bin\netstandard1.3\WampSharp.dll" target="lib\netstandard1.3\WampSharp.dll" />
5773
<file src="bin\netstandard1.3\WampSharp.xml" target="lib\netstandard1.3\WampSharp.xml" />
74+
<file src="bin\uap10.0\WampSharp.dll" target="lib\uap10.0\WampSharp.dll" />
75+
<file src="bin\uap10.0\WampSharp.xml" target="lib\uap10.0\WampSharp.xml" />
5876
</files>
5977
</package>

src/net45/Tests/WampSharp.Tests.Wampv2/project.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,23 @@
2222
"buildOptions": {
2323
"define": [ "NETCORE" ]
2424
}
25+
},
26+
"uap10.0": {
27+
"imports": [
28+
"netcoreapp1.0",
29+
"dotnet"
30+
],
31+
"dependencies": {
32+
"NUnit": "3.4.0",
33+
"dotnet-test-nunit": "3.4.0-beta-1",
34+
"Microsoft.NETCore.App": {
35+
"version": "1.0.0-*",
36+
"type": "platform"
37+
}
38+
},
39+
"buildOptions": {
40+
"define": [ "NETCORE" ]
41+
}
2542
}
2643
}
2744
}

src/net45/WampSharp/project.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,36 @@
3030
"System.Security.Cryptography.Algorithms": "4.2.0",
3131
"System.Text.RegularExpressions": "4.1.0"
3232
}
33+
},
34+
"uap10.0": {
35+
"buildOptions": {
36+
"define": [ "NET45", "NETCORE", "PCL", "MANUAL_PROXY", "DISPATCH_PROXY", "LIBLOG_PUBLIC", "LIBLOG_PORTABLE", "TPL", "ASYNC_LOCAL", "ASYNC", "WAMPCRA" ],
37+
"xmlDoc": true
38+
},
39+
"dependencies": {
40+
"Microsoft.CSharp": "4.0.1",
41+
"System.Threading.Tasks.Dataflow": "4.6.0",
42+
"System.Collections.Concurrent": "4.0.12",
43+
"System.Collections.Immutable": "1.2.0",
44+
"System.ComponentModel": "4.0.1",
45+
"System.Net.Primitives": "4.0.11",
46+
"System.Reactive": "3.0.0",
47+
"System.Reflection.Extensions": "4.0.1",
48+
"System.Reflection.DispatchProxy": "4.0.1",
49+
"System.Reflection.TypeExtensions": "4.1.0",
50+
"System.Runtime": "4.1.0",
51+
"System.Runtime.Serialization.Primitives": "4.1.1",
52+
"System.Security.Cryptography.Algorithms": "4.2.0",
53+
"System.Text.RegularExpressions": "4.1.0",
54+
"Microsoft.TargetingPack.Private.WinRT": {
55+
"version": "1.0.1",
56+
"type": "build"
57+
},
58+
"Microsoft.NETCore.UniversalWindowsPlatform": {
59+
"version": "5.2.2",
60+
"type": "build"
61+
}
62+
}
3363
}
3464
}
3565
}

0 commit comments

Comments
 (0)