~pogs-troubleshooters/pogs/trunk

« back to all changes in this revision

Viewing changes to TestPOGSNetworkDiscovery/TestPOGSNetworkDiscovery.mdp

  • Committer: Matthew Walton
  • Date: 2008-08-17 08:22:36 UTC
  • Revision ID: matthew@matthew-walton.co.uk-20080817082236-n7eguzcjd65jh975
First iteration of POGS server code. Server doesn't work (doesn't actually compile right now). Some of the message-handling code from the client has been pulled out into a new LibPOGS project so it can be shared with the server. Server library itself is written in Boo; LibPOGS is in C#. It also contains a BlockingQueue collection, which is used by the server to pass messages from the async I/O threads to the threads handling each client's messages. Full server layout isn't entirely specified yet, so things may change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<Project name="TestPOGSNetworkDiscovery" fileversion="2.0" language="C#" clr-version="Net_2_0" ctype="DotNetProject">
2
2
  <Configurations active="Debug">
3
3
    <Configuration name="Debug" ctype="DotNetProjectConfiguration">
4
 
      <Output directory="./bin/Debug" assembly="TestPOGSNetworkDiscovery" />
 
4
      <Output directory="bin/Debug" assembly="TestPOGSNetworkDiscovery" />
5
5
      <Build debugmode="True" target="Exe" />
6
6
      <Execution runwithwarnings="True" consolepause="True" runtime="MsNet" clr-version="Net_2_0" />
7
 
      <CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" mainclass="" generatexmldocumentation="False" win32Icon="./" ctype="CSharpCompilerParameters" />
 
7
      <CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" mainclass="" generatexmldocumentation="False" win32Icon="." ctype="CSharpCompilerParameters" />
8
8
    </Configuration>
9
9
    <Configuration name="Release" ctype="DotNetProjectConfiguration">
10
 
      <Output directory="./bin/Release" assembly="TestPOGSNetworkDiscovery" />
 
10
      <Output directory="bin/Release" assembly="TestPOGSNetworkDiscovery" />
11
11
      <Build debugmode="False" target="Exe" />
12
12
      <Execution runwithwarnings="True" consolepause="True" runtime="MsNet" clr-version="Net_2_0" />
13
 
      <CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" mainclass="" generatexmldocumentation="False" win32Icon="./" ctype="CSharpCompilerParameters" />
 
13
      <CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" mainclass="" generatexmldocumentation="False" win32Icon="." ctype="CSharpCompilerParameters" />
14
14
    </Configuration>
15
15
  </Configurations>
16
16
  <Contents>
17
 
    <File name="./Main.cs" subtype="Code" buildaction="Compile" />
18
 
    <File name="./AssemblyInfo.cs" subtype="Code" buildaction="Compile" />
 
17
    <File name="Main.cs" subtype="Code" buildaction="Compile" />
 
18
    <File name="AssemblyInfo.cs" subtype="Code" buildaction="Compile" />
19
19
  </Contents>
20
20
  <References>
21
21
    <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />