Skip to content

Commit

Permalink
Attempt to fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
parsley72 committed Mar 23, 2016
1 parent f03d2e5 commit 8173503
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 41 deletions.
9 changes: 0 additions & 9 deletions .gitmodules

This file was deleted.

15 changes: 0 additions & 15 deletions GoFreeWebSocketTest/WebSocketTest.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebSocketTest", "WebSocketTest\WebSocketTest.csproj", "{3FB9520D-E4D5-4503-B862-EBB7F36C2EAF}"
ProjectSection(ProjectDependencies) = postProject
{B357BAC7-529E-4D81-A0D2-71041B19C8DE} = {B357BAC7-529E-4D81-A0D2-71041B19C8DE}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "websocket-sharp", "..\websocket-sharp\websocket-sharp\websocket-sharp.csproj", "{B357BAC7-529E-4D81-A0D2-71041B19C8DE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -28,16 +23,6 @@ Global
{3FB9520D-E4D5-4503-B862-EBB7F36C2EAF}.Release|Mixed Platforms.Build.0 = Release|x86
{3FB9520D-E4D5-4503-B862-EBB7F36C2EAF}.Release|x86.ActiveCfg = Release|x86
{3FB9520D-E4D5-4503-B862-EBB7F36C2EAF}.Release|x86.Build.0 = Release|x86
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Debug|x86.ActiveCfg = Debug|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Release|Any CPU.Build.0 = Release|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B357BAC7-529E-4D81-A0D2-71041B19C8DE}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
6 changes: 3 additions & 3 deletions GoFreeWebSocketTest/WebSocketTest/GoFree.cs
Original file line number Diff line number Diff line change
Expand Up @@ -802,11 +802,11 @@ private void configure()
{
switch (e.Type)
{
case Opcode.TEXT:
case Opcode.Text:
/*var msg =*/ parseTextMessage(e.Data);
// _msgQ.Enqueue(msg);
break;
case Opcode.BINARY:
case Opcode.Binary:
break;
default:
break;
Expand Down Expand Up @@ -925,7 +925,7 @@ private void parseTextMessage(string data)

default:
{
System.Diagnostics.Debug.WriteLine("Eh? {0}", key);
System.Diagnostics.Debug.WriteLine("Eh? {0} {1}", key, data);
}
break;
}
Expand Down
24 changes: 13 additions & 11 deletions GoFreeWebSocketTest/WebSocketTest/WebSocketTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="CommandLine, Version=1.9.71.2, Culture=neutral, PublicKeyToken=de6f01bd326f8c32, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>.\CommandLine.dll</HintPath>
<HintPath>..\packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>.\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -67,19 +67,17 @@
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="websocket-sharp-with-proxy-support, Version=1.0.2.28248, Culture=neutral, PublicKeyToken=5660b08a1845a91e, processorArchitecture=MSIL">
<HintPath>..\packages\websocket-sharp-with-proxy-support.1.9.1\lib\net35-client\websocket-sharp-with-proxy-support.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="GoFree.cs" />
<Compile Include="NavicoDiscovery.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\websocket-sharp\websocket-sharp\websocket-sharp.csproj">
<Project>{B357BAC7-529E-4D81-A0D2-71041B19C8DE}</Project>
<Name>websocket-sharp</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
<Visible>False</Visible>
Expand All @@ -104,6 +102,10 @@
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Service References\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
1 change: 0 additions & 1 deletion lib/Newtonsoft.Json
Submodule Newtonsoft.Json deleted from 415b56
1 change: 0 additions & 1 deletion lib/commandline
Submodule commandline deleted from 205094
1 change: 0 additions & 1 deletion lib/websocket-sharp
Submodule websocket-sharp deleted from 1b2706

0 comments on commit 8173503

Please sign in to comment.