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>

0 commit comments

Comments
 (0)