| <?xml version="1.0" encoding="utf-8"?> |
| <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> |
| <PropertyGroup> |
| <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
| <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
| <ProjectGuid>{EE016707-9820-4191-A8A8-9E857F04E190}</ProjectGuid> |
| <OutputType>Exe</OutputType> |
| <AppDesignerFolder>Properties</AppDesignerFolder> |
| <RootNamespace>WebsocketChatServer</RootNamespace> |
| <AssemblyName>WebsocketChatServer</AssemblyName> |
| <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
| <FileAlignment>512</FileAlignment> |
| </PropertyGroup> |
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| <PlatformTarget>AnyCPU</PlatformTarget> |
| <DebugSymbols>true</DebugSymbols> |
| <DebugType>full</DebugType> |
| <Optimize>false</Optimize> |
| <OutputPath>bin\Debug\</OutputPath> |
| <DefineConstants>DEBUG;TRACE</DefineConstants> |
| <ErrorReport>prompt</ErrorReport> |
| <WarningLevel>4</WarningLevel> |
| </PropertyGroup> |
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| <PlatformTarget>AnyCPU</PlatformTarget> |
| <DebugType>pdbonly</DebugType> |
| <Optimize>true</Optimize> |
| <OutputPath>bin\Release\</OutputPath> |
| <DefineConstants>TRACE</DefineConstants> |
| <ErrorReport>prompt</ErrorReport> |
| <WarningLevel>4</WarningLevel> |
| </PropertyGroup> |
| <ItemGroup> |
| <Reference Include="Newtonsoft.Json"> |
| <HintPath>..\..\packages\Newtonsoft.Json.7.0.1\lib\net40\Newtonsoft.Json.dll</HintPath> |
| </Reference> |
| <Reference Include="System" /> |
| <Reference Include="System.Core" /> |
| <Reference Include="System.Xml.Linq" /> |
| <Reference Include="System.Data.DataSetExtensions" /> |
| <Reference Include="Microsoft.CSharp" /> |
| <Reference Include="System.Data" /> |
| <Reference Include="System.Xml" /> |
| </ItemGroup> |
| <ItemGroup> |
| <Compile Include="ChatWebSocketServer.cs" /> |
| <Compile Include="Extend.cs" /> |
| <Compile Include="ExceptionFilter.cs" /> |
| <Compile Include="JsonNetSerializer.cs" /> |
| <Compile Include="NickNameFilter.cs" /> |
| <Compile Include="Program.cs" /> |
| <Compile Include="Properties\AssemblyInfo.cs" /> |
| <Compile Include="ChatApiService.cs" /> |
| </ItemGroup> |
| <ItemGroup> |
| <Content Include="index.js" /> |
| <Content Include="index.html" /> |
| <Content Include="js\bootstrap\css\bootstrap-ie6.min.css" /> |
| <Content Include="js\bootstrap\css\bootstrap-responsive.min.css" /> |
| <Content Include="js\bootstrap\css\bootstrap.min.css" /> |
| <Content Include="js\bootstrap\css\ie.css" /> |
| <Content Include="js\bootstrap\img\glyphicons-halflings-8.png" /> |
| <Content Include="js\bootstrap\img\glyphicons-halflings-white.png" /> |
| <Content Include="js\bootstrap\img\glyphicons-halflings.png" /> |
| <Content Include="js\bootstrap\img\next.png" /> |
| <Content Include="js\bootstrap\img\prev.png" /> |
| <Content Include="js\bootstrap\js\bootstrap-ie.js" /> |
| <Content Include="js\bootstrap\js\bootstrap.min.js" /> |
| <Content Include="js\jsonWebSocket.js" /> |
| <Content Include="js\jquery-1.7.1.min.js" /> |
| <Content Include="js\json2.js" /> |
| <Content Include="js\swfobject.js" /> |
| <Content Include="js\WebSocketMain.swf" /> |
| <Content Include="js\web_socket.js" /> |
| <Content Include="js\window\window.css" /> |
| <Content Include="js\window\window.js" /> |
| </ItemGroup> |
| <ItemGroup> |
| <ProjectReference Include="..\..\Net40\NetworkSocket\NetworkSocket.csproj"> |
| <Project>{80d0fa44-523b-4e68-bdc2-b12901d5855b}</Project> |
| <Name>NetworkSocket</Name> |
| </ProjectReference> |
| </ItemGroup> |
| <ItemGroup /> |
| <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
| <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
| Other similar extension points exist, see Microsoft.Common.targets. |
| <Target Name="BeforeBuild"> |
| </Target> |
| <Target Name="AfterBuild"> |
| </Target> |
| --> |
| </Project> |