[or-cvs] Add C# controller lib port from Oliver Rau.

Nick Mathewson nickm at seul.org
Wed Nov 9 21:47:06 UTC 2005


Update of /home/or/cvsroot/control/cs
In directory moria:/tmp/cvs-serv5623

Added Files:
	LICENSE Makefile tor.cmbx 
Log Message:
Add C# controller lib port from Oliver Rau.

--- NEW FILE: LICENSE ---
===============================================================================
The Tor .NET Controller Library code is distributed under this license:

Copyright (C) 2005 Oliver Rau

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    * Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.

    * Neither the names of the copyright owners nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

--- NEW FILE: Makefile ---
VERSION=0.1-cvs
LIBSRC=control/*.cs \
       control/ControlConnectionClasses/*.cs \
       control/Exceptions/*.cs \
       control/HelperClasses/*.cs
       
TESTSRC=test/*.cs
     
all: test 

dll: clean
	mkdir bin
	mcs -target:library -out:bin/Tor.Control.dll $(LIBSRC)

test: dll
	mcs -target:exe -out:bin/test.exe -reference:bin/Tor.Control.dll $(TESTSRC)

clean:
	rm -rf bin

--- NEW FILE: tor.cmbx ---
<Combine fileversion="1.0" name="tor" description="">
  <StartMode startupentry="test" single="True">
    <Execute entry="control" type="None" />
    <Execute entry="test" type="None" />
  </StartMode>
  <Entries>
    <Entry filename=".\control\control.prjx" />
    <Entry filename=".\test\test.prjx" />
  </Entries>
  <Configurations active="Debug">
    <Configuration name="Release">
      <Entry name="control" configurationname="Debug" build="False" />
      <Entry name="test" configurationname="Debug" build="False" />
    </Configuration>
    <Configuration name="Debug">
      <Entry name="control" configurationname="Debug" build="False" />
      <Entry name="test" configurationname="Debug" build="False" />
    </Configuration>
  </Configurations>
</Combine>



More information about the tor-commits mailing list