Skip to content

Commit 4bfba80

Browse files
author
Elad Zelingher
committed
Fixing build
1 parent c20b6fc commit 4bfba80

File tree

33 files changed

+70
-43
lines changed

33 files changed

+70
-43
lines changed

src/mono/Default/WampSharp.NewtonsoftMsgpack/WampSharp.NewtonsoftMsgpack.csproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,17 @@
3434
<DocumentationFile>bin\Release\WampSharp.NewtonsoftMsgpack.XML</DocumentationFile>
3535
</PropertyGroup>
3636
<ItemGroup>
37+
<Reference Include="MsgPack, Version=0.5.0.0, Culture=neutral, PublicKeyToken=a2625990d5dc0167, processorArchitecture=MSIL">
38+
<HintPath>..\..\packages\MsgPack.Cli.0.5.4\lib\net45\MsgPack.dll</HintPath>
39+
<Private>True</Private>
40+
</Reference>
3741
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3842
<SpecificVersion>False</SpecificVersion>
3943
<HintPath>..\..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
4044
</Reference>
41-
<Reference Include="Newtonsoft.Msgpack">
42-
<HintPath>..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
45+
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
46+
<HintPath>..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
47+
<Private>True</Private>
4348
</Reference>
4449
<Reference Include="System" />
4550
<Reference Include="System.Core" />
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3+
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net45" />
34
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
5+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net45" />
46
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Callee/WampSharp.Samples.Callee.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
54+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
55+
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="System" />
5858
<Reference Include="System.Core" />

src/mono/Samples/WAMP2/WampSharp.Samples.Callee/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<package id="Fleck" version="0.13.0.48" targetFramework="net45" />
55
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net45" />
66
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
7-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net45" />
7+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net45" />
88
<package id="WebSocket4Net" version="0.12" targetFramework="net45" />
99
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Caller/WampSharp.Samples.Caller.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
54+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
55+
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="System" />
5858
<Reference Include="System.Core" />

src/mono/Samples/WAMP2/WampSharp.Samples.Caller/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<package id="Fleck" version="0.13.0.48" targetFramework="net45" />
55
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net45" />
66
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
7-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net45" />
7+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net45" />
88
<package id="WebSocket4Net" version="0.12" targetFramework="net45" />
99
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.EdgeJs/WampSharp.Samples.EdgeJs.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5454
</Reference>
5555
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
56-
<SpecificVersion>False</SpecificVersion>
57-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
56+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
57+
<Private>True</Private>
5858
</Reference>
5959
<Reference Include="System" />
6060
<Reference Include="System.Core" />

src/mono/Samples/WAMP2/WampSharp.Samples.EdgeJs/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<package id="Fleck" version="0.13.0.48" targetFramework="net45" />
66
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net45" />
77
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
8-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net45" />
8+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net45" />
99
<package id="WebSocket4Net" version="0.12" targetFramework="net45" />
1010
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Publisher/WampSharp.Samples.Publisher.csproj

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
54+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
55+
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="System" />
5858
<Reference Include="System.Core" />
@@ -90,6 +90,14 @@
9090
<None Include="packages.config" />
9191
</ItemGroup>
9292
<ItemGroup>
93+
<ProjectReference Include="..\..\..\Default\WampSharp.NewtonsoftJson\WampSharp.NewtonsoftJson.csproj">
94+
<Project>{2DBD5996-521B-4BD2-9ECF-35C5B9BC1A59}</Project>
95+
<Name>WampSharp.NewtonsoftJson</Name>
96+
</ProjectReference>
97+
<ProjectReference Include="..\..\..\Default\WampSharp.NewtonsoftMsgpack\WampSharp.NewtonsoftMsgpack.csproj">
98+
<Project>{061D1C1C-52A7-4FCB-9DF8-C1E28BFAD378}</Project>
99+
<Name>WampSharp.NewtonsoftMsgpack</Name>
100+
</ProjectReference>
93101
<ProjectReference Include="..\..\..\Extensions\WampSharp.Vtortola\WampSharp.Vtortola.csproj">
94102
<Project>{DE13BC69-B822-45EA-846F-DDEF66D34BD9}</Project>
95103
<Name>WampSharp.Vtortola</Name>

src/mono/Samples/WAMP2/WampSharp.Samples.Publisher/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<package id="Fleck" version="0.13.0.48" targetFramework="net45" />
55
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net45" />
66
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
7-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net45" />
7+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net45" />
88
<package id="WebSocket4Net" version="0.12" targetFramework="net45" />
99
</packages>

src/mono/Samples/WAMP2/WampSharp.Samples.Subscriber/WampSharp.Samples.Subscriber.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
4848
</Reference>
4949
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
50-
<SpecificVersion>False</SpecificVersion>
51-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
50+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net45\Newtonsoft.Msgpack.dll</HintPath>
51+
<Private>True</Private>
5252
</Reference>
5353
<Reference Include="System" />
5454
<Reference Include="System.Core" />

src/mono/Samples/WAMP2/WampSharp.Samples.Subscriber/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<package id="Fleck" version="0.13.0.48" targetFramework="net45" />
44
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net45" />
55
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
6-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net45" />
6+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net45" />
77
<package id="WebSocket4Net" version="0.12" targetFramework="net45" />
88
</packages>

src/net40/Default/WampSharp.Fleck/WampSharp.Fleck.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/Default/WampSharp.NewtonsoftJson/WampSharp.NewtonsoftJson.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/Default/WampSharp.NewtonsoftMsgpack/WampSharp.NewtonsoftMsgpack.csproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>
@@ -35,12 +34,17 @@
3534
<DocumentationFile>bin\Release\WampSharp.NewtonsoftMsgpack.XML</DocumentationFile>
3635
</PropertyGroup>
3736
<ItemGroup>
37+
<Reference Include="MsgPack, Version=0.5.0.0, Culture=neutral, PublicKeyToken=a2625990d5dc0167, processorArchitecture=MSIL">
38+
<HintPath>..\..\packages\MsgPack.Cli.0.5.4\lib\net40-client\MsgPack.dll</HintPath>
39+
<Private>True</Private>
40+
</Reference>
3841
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3942
<SpecificVersion>False</SpecificVersion>
4043
<HintPath>..\..\packages\Newtonsoft.Json.6.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
4144
</Reference>
42-
<Reference Include="Newtonsoft.Msgpack">
43-
<HintPath>..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
45+
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
46+
<HintPath>..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
47+
<Private>True</Private>
4448
</Reference>
4549
<Reference Include="System" />
4650
<Reference Include="System.Core" />
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3+
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net40" />
34
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net40" />
5+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net40" />
46
</packages>

src/net40/Default/WampSharp.WebSocket4Net/WampSharp.WebSocket4Net.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/Default/WampSharp.Windows/WampSharp.Windows.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1616
<TargetFrameworkProfile>Profile32</TargetFrameworkProfile>
1717
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
18-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1918
</PropertyGroup>
2019
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2120
<DebugSymbols>true</DebugSymbols>

src/net40/Samples/WAMP2/WampSharp.Samples.Callee/WampSharp.Samples.Callee.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
54+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
55+
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="System" />
5858
<Reference Include="System.Core" />

src/net40/Samples/WAMP2/WampSharp.Samples.Callee/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<package id="Fleck" version="0.13.0.48" targetFramework="net40" />
55
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net40" />
66
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net40" />
7-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net40" />
7+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net40" />
88
<package id="Rx-Core" version="2.2.5" targetFramework="net40" />
99
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net40" />
1010
<package id="Rx-Linq" version="2.2.5" targetFramework="net40" />

src/net40/Samples/WAMP2/WampSharp.Samples.Caller/WampSharp.Samples.Caller.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
54+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
55+
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="System" />
5858
<Reference Include="System.Core" />

src/net40/Samples/WAMP2/WampSharp.Samples.Caller/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<package id="Fleck" version="0.13.0.48" targetFramework="net40" />
55
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net40" />
66
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net40" />
7-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net40" />
7+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net40" />
88
<package id="Rx-Core" version="2.2.5" targetFramework="net40" />
99
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net40" />
1010
<package id="Rx-Linq" version="2.2.5" targetFramework="net40" />

src/net40/Samples/WAMP2/WampSharp.Samples.Publisher/WampSharp.Samples.Publisher.csproj

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54-
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
54+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
55+
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="System" />
5858
<Reference Include="System.Core" />
@@ -93,6 +93,14 @@
9393
<None Include="packages.config" />
9494
</ItemGroup>
9595
<ItemGroup>
96+
<ProjectReference Include="..\..\..\Default\WampSharp.NewtonsoftJson\WampSharp.NewtonsoftJson.csproj">
97+
<Project>{2DBD5996-521B-4BD2-9ECF-35C5B9BC1A59}</Project>
98+
<Name>WampSharp.NewtonsoftJson</Name>
99+
</ProjectReference>
100+
<ProjectReference Include="..\..\..\Default\WampSharp.NewtonsoftMsgpack\WampSharp.NewtonsoftMsgpack.csproj">
101+
<Project>{061D1C1C-52A7-4FCB-9DF8-C1E28BFAD378}</Project>
102+
<Name>WampSharp.NewtonsoftMsgpack</Name>
103+
</ProjectReference>
96104
<ProjectReference Include="..\..\..\Extensions\WampSharp.Vtortola\WampSharp.Vtortola.csproj">
97105
<Project>{DE13BC69-B822-45EA-846F-DDEF66D34BD9}</Project>
98106
<Name>WampSharp.Vtortola</Name>

src/net40/Samples/WAMP2/WampSharp.Samples.Publisher/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<package id="Fleck" version="0.13.0.48" targetFramework="net40" />
55
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net40" />
66
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net40" />
7-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net40" />
7+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net40" />
88
<package id="Rx-Core" version="2.2.5" targetFramework="net40" />
99
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net40" />
1010
<package id="Rx-Linq" version="2.2.5" targetFramework="net40" />

src/net40/Samples/WAMP2/WampSharp.Samples.Subscriber/WampSharp.Samples.Subscriber.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
4848
</Reference>
4949
<Reference Include="Newtonsoft.Msgpack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
50-
<SpecificVersion>False</SpecificVersion>
51-
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.4\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
50+
<HintPath>..\..\..\packages\Newtonsoft.Msgpack.0.1.5\lib\net40\Newtonsoft.Msgpack.dll</HintPath>
51+
<Private>True</Private>
5252
</Reference>
5353
<Reference Include="System" />
5454
<Reference Include="System.Core" />

src/net40/Samples/WAMP2/WampSharp.Samples.Subscriber/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package id="Fleck" version="0.13.0.48" targetFramework="net40" />
44
<package id="MsgPack.Cli" version="0.5.4" targetFramework="net40" />
55
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net40" />
6-
<package id="Newtonsoft.Msgpack" version="0.1.4" targetFramework="net40" />
6+
<package id="Newtonsoft.Msgpack" version="0.1.5" targetFramework="net40" />
77
<package id="Rx-Core" version="2.2.5" targetFramework="net40" />
88
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net40" />
99
<package id="Rx-Linq" version="2.2.5" targetFramework="net40" />

src/net40/Tests/WampSharp.Tests.TestHelpers/WampSharp.Tests.TestHelpers.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/WampSharp.Default.Client/WampSharp.Default.Client.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/WampSharp.Default.Router/WampSharp.Default.Router.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/WampSharp.WAMP1.Default/WampSharp.WAMP1.Default.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

src/net40/WampSharp.WAMP1/WampSharp.WAMP1.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16-
<SDK40ToolsPath>C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.0.1 Tools\</SDK40ToolsPath>
1716
</PropertyGroup>
1817
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1918
<DebugSymbols>true</DebugSymbols>

0 commit comments

Comments
 (0)