Mercurial > hg > ucis.core
annotate UCIS.csproj @ 9:9533a87363f3
Fixed deadlock in QueuedPacketStream
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Fri, 18 Jan 2013 16:29:50 +0100 |
parents | 2933f7750542 |
children | 2e0ff842aa4a |
rev | line source |
---|---|
0 | 1 ???<?xml version="1.0" encoding="utf-8"?> |
2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
6 <ProductVersion>9.0.30729</ProductVersion> | |
7 <SchemaVersion>2.0</SchemaVersion> | |
8 <ProjectGuid>{3200885C-E36B-400B-BE21-6209B47832E6}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>UCIS</RootNamespace> | |
12 <AssemblyName>UCIS</AssemblyName> | |
13 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> | |
14 <FileAlignment>512</FileAlignment> | |
1
28dc7d535036
Small improvements, introduced PacketStream
Ivo Smits <Ivo@UCIS.nl>
parents:
0
diff
changeset
|
15 <SignAssembly>true</SignAssembly> |
28dc7d535036
Small improvements, introduced PacketStream
Ivo Smits <Ivo@UCIS.nl>
parents:
0
diff
changeset
|
16 <AssemblyOriginatorKeyFile>UCIS.snk</AssemblyOriginatorKeyFile> |
0 | 17 </PropertyGroup> |
18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
19 <DebugSymbols>true</DebugSymbols> | |
20 <DebugType>full</DebugType> | |
21 <Optimize>false</Optimize> | |
22 <OutputPath>..\lib\</OutputPath> | |
23 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
24 <ErrorReport>prompt</ErrorReport> | |
25 <WarningLevel>4</WarningLevel> | |
26 </PropertyGroup> | |
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
28 <DebugType>pdbonly</DebugType> | |
29 <Optimize>true</Optimize> | |
30 <OutputPath>..\lib\</OutputPath> | |
31 <DefineConstants>TRACE</DefineConstants> | |
32 <ErrorReport>prompt</ErrorReport> | |
33 <WarningLevel>4</WarningLevel> | |
34 </PropertyGroup> | |
35 <ItemGroup> | |
36 <Reference Include="System" /> | |
37 <Reference Include="System.Data" /> | |
38 <Reference Include="System.Management" /> | |
39 <Reference Include="System.Xml" /> | |
40 </ItemGroup> | |
41 <ItemGroup> | |
42 <Compile Include="Cache.cs" /> | |
43 <Compile Include="Cci\CciCommand.cs" /> | |
44 <Compile Include="Database.cs" /> | |
45 <None Include="DBReader.cs" /> | |
46 <Compile Include="Net\ConnectionList.cs" /> | |
47 <Compile Include="Net\HTTP.cs" /> | |
48 <Compile Include="Net\INetworkConnection.cs" /> | |
49 <Compile Include="Net\TCPServer.cs" /> | |
50 <Compile Include="Net\TCPStream.cs" /> | |
51 <Compile Include="Pml\Channels\ActivePmlChannel.cs" /> | |
52 <Compile Include="Pml\Channels\PassivePmlChannel.cs" /> | |
53 <Compile Include="Pml\Channels\PmlChannel.cs" /> | |
54 <None Include="Pml\Elements\Array.cs" /> | |
55 <Compile Include="Pml\Elements\Binary.cs" /> | |
56 <Compile Include="Pml\Elements\Collection.cs" /> | |
57 <Compile Include="Pml\Elements\Dictionary.cs" /> | |
58 <Compile Include="Pml\Elements\Element.cs" /> | |
59 <Compile Include="Pml\Elements\Integer.cs" /> | |
60 <None Include="Pml\Elements\Number.cs" /> | |
61 <Compile Include="Pml\Elements\PmlNull.cs" /> | |
62 <Compile Include="Pml\Elements\PmlString.cs" /> | |
63 <Compile Include="Pml\Channels\IPmlChannel.cs" /> | |
64 <Compile Include="Pml\IPmlCommunicator.cs" /> | |
65 <Compile Include="Pml\IPmlRpc.cs" /> | |
66 <None Include="Pml\LegacyPmlCommunicator.cs" /> | |
67 <Compile Include="Pml\PmlBuilder.cs" /> | |
68 <None Include="Pml\PmlCommunicator.cs" /> | |
1
28dc7d535036
Small improvements, introduced PacketStream
Ivo Smits <Ivo@UCIS.nl>
parents:
0
diff
changeset
|
69 <None Include="UCIS.snk" /> |
0 | 70 <Compile Include="Pml\PmlCommunicator2.cs" /> |
71 <Compile Include="Pml\RW\PmlAmfRW.cs" /> | |
72 <Compile Include="Pml\RW\PmlPHPRW.cs" /> | |
73 <Compile Include="Pml\RW\PmlBinaryRW.cs" /> | |
74 <Compile Include="Pml\RW\IPmlRW.cs" /> | |
75 <Compile Include="Pml\PmlConnection.cs" /> | |
76 <Compile Include="Pml\RW\PmlTextRW.cs" /> | |
77 <Compile Include="Pml\RW\PmlXmlRW.cs" /> | |
78 <Compile Include="Pml\Channels\TCPPmlChannel.cs" /> | |
79 <Compile Include="Properties\AssemblyInfo.cs" /> | |
80 <Compile Include="Radio\Tuner.cs" /> | |
81 <Compile Include="ThreadPool.cs" /> | |
82 <Compile Include="UTF8NoPreamble.cs" /> | |
83 <Compile Include="Util\ArrayUtil.cs" /> | |
5 | 84 <Compile Include="Util\AsyncResultBase.cs" /> |
0 | 85 <Compile Include="Util\AsyncStream.cs" /> |
86 <Compile Include="Util\CrossStream.cs" /> | |
87 <Compile Include="Util\HoldStream.cs" /> | |
1
28dc7d535036
Small improvements, introduced PacketStream
Ivo Smits <Ivo@UCIS.nl>
parents:
0
diff
changeset
|
88 <Compile Include="Util\PacketStream.cs" /> |
0 | 89 <Compile Include="Util\PipeStream.cs" /> |
5 | 90 <Compile Include="Util\PrebufferingStream.cs" /> |
1
28dc7d535036
Small improvements, introduced PacketStream
Ivo Smits <Ivo@UCIS.nl>
parents:
0
diff
changeset
|
91 <Compile Include="Util\QueuedPacketStream.cs" /> |
0 | 92 <Compile Include="Windows\ServiceManager.cs" /> |
93 <Compile Include="Xml\PolicyFile.cs" /> | |
94 <Compile Include="Xml\Server.cs" /> | |
95 <Compile Include="Xml\Socket.cs" /> | |
96 </ItemGroup> | |
97 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
98 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
99 Other similar extension points exist, see Microsoft.Common.targets. | |
100 <Target Name="BeforeBuild"> | |
101 </Target> | |
102 <Target Name="AfterBuild"> | |
103 </Target> | |
104 --> | |
105 </Project> |