Mercurial > pub > ImplabNet
annotate Implab/Implab.csproj @ 131:b5c2d609d71b v2
minor changes
| author | cin |
|---|---|
| date | Sat, 07 Feb 2015 11:06:42 +0300 |
| parents | 471f596b2603 |
| children | 04d4c92d0f28 |
| rev | line source |
|---|---|
| 2 | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| 3 <PropertyGroup> | |
| 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
| 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
| 4 | 6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> |
| 2 | 7 <OutputType>Library</OutputType> |
| 8 <RootNamespace>Implab</RootNamespace> | |
| 9 <AssemblyName>Implab</AssemblyName> | |
| 10 </PropertyGroup> | |
| 11 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 12 <DebugSymbols>true</DebugSymbols> | |
| 13 <DebugType>full</DebugType> | |
| 14 <Optimize>false</Optimize> | |
| 15 <OutputPath>bin\Debug</OutputPath> | |
| 35 | 16 <DefineConstants>TRACE;DEBUG;</DefineConstants> |
| 2 | 17 <ErrorReport>prompt</ErrorReport> |
| 18 <WarningLevel>4</WarningLevel> | |
| 19 <ConsolePause>false</ConsolePause> | |
| 59 | 20 <RunCodeAnalysis>true</RunCodeAnalysis> |
| 2 | 21 </PropertyGroup> |
| 22 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| 23 <DebugType>full</DebugType> | |
| 24 <Optimize>true</Optimize> | |
| 25 <OutputPath>bin\Release</OutputPath> | |
| 26 <ErrorReport>prompt</ErrorReport> | |
| 27 <WarningLevel>4</WarningLevel> | |
| 28 <ConsolePause>false</ConsolePause> | |
| 29 </PropertyGroup> | |
| 75 | 30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |
| 31 <DebugSymbols>true</DebugSymbols> | |
| 32 <DebugType>full</DebugType> | |
| 33 <Optimize>false</Optimize> | |
| 34 <OutputPath>bin\Debug</OutputPath> | |
| 35 <DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants> | |
| 36 <ErrorReport>prompt</ErrorReport> | |
| 37 <WarningLevel>4</WarningLevel> | |
| 38 <RunCodeAnalysis>true</RunCodeAnalysis> | |
| 39 <ConsolePause>false</ConsolePause> | |
| 40 </PropertyGroup> | |
| 41 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
| 42 <Optimize>true</Optimize> | |
| 43 <OutputPath>bin\Release</OutputPath> | |
| 44 <ErrorReport>prompt</ErrorReport> | |
| 45 <WarningLevel>4</WarningLevel> | |
| 46 <ConsolePause>false</ConsolePause> | |
| 47 <DefineConstants>NET_4_5</DefineConstants> | |
| 48 </PropertyGroup> | |
| 85 | 49 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMono|AnyCPU' "> |
| 50 <DebugSymbols>true</DebugSymbols> | |
| 51 <DebugType>full</DebugType> | |
| 52 <Optimize>false</Optimize> | |
| 53 <OutputPath>bin\Debug</OutputPath> | |
| 54 <DefineConstants>TRACE;DEBUG;NET_4_5;MONO</DefineConstants> | |
| 55 <ErrorReport>prompt</ErrorReport> | |
| 56 <WarningLevel>4</WarningLevel> | |
| 57 <RunCodeAnalysis>true</RunCodeAnalysis> | |
| 58 <ConsolePause>false</ConsolePause> | |
| 59 </PropertyGroup> | |
| 60 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|AnyCPU' "> | |
| 61 <Optimize>true</Optimize> | |
| 62 <OutputPath>bin\Release</OutputPath> | |
| 63 <DefineConstants>NET_4_5;MONO;</DefineConstants> | |
| 64 <ErrorReport>prompt</ErrorReport> | |
| 65 <WarningLevel>4</WarningLevel> | |
| 66 <ConsolePause>false</ConsolePause> | |
| 67 </PropertyGroup> | |
| 2 | 68 <ItemGroup> |
| 69 <Reference Include="System" /> | |
| 67 | 70 <Reference Include="System.Xml" /> |
| 2 | 71 </ItemGroup> |
| 72 <ItemGroup> | |
| 40 | 73 <Compile Include="Component.cs" /> |
| 55 | 74 <Compile Include="CustomEqualityComparer.cs" /> |
| 36 | 75 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> |
| 40 | 76 <Compile Include="Diagnostics\EventText.cs" /> |
| 77 <Compile Include="Diagnostics\IEventTextFormatter.cs" /> | |
| 36 | 78 <Compile Include="Diagnostics\LogChannel.cs" /> |
| 35 | 79 <Compile Include="Diagnostics\LogicalOperation.cs" /> |
| 40 | 80 <Compile Include="Diagnostics\TextFileListener.cs" /> |
| 81 <Compile Include="Diagnostics\TextListenerBase.cs" /> | |
| 36 | 82 <Compile Include="Diagnostics\TraceLog.cs" /> |
| 83 <Compile Include="Diagnostics\TraceEvent.cs" /> | |
| 35 | 84 <Compile Include="Diagnostics\TraceEventType.cs" /> |
| 40 | 85 <Compile Include="Disposable.cs" /> |
| 12 | 86 <Compile Include="ICancellable.cs" /> |
| 87 <Compile Include="IProgressHandler.cs" /> | |
| 88 <Compile Include="IProgressNotifier.cs" /> | |
| 66 | 89 <Compile Include="IPromiseT.cs" /> |
| 8 | 90 <Compile Include="IPromise.cs" /> |
| 40 | 91 <Compile Include="IServiceLocator.cs" /> |
| 12 | 92 <Compile Include="ITaskController.cs" /> |
| 55 | 93 <Compile Include="JSON\JSONElementContext.cs" /> |
| 94 <Compile Include="JSON\JSONElementType.cs" /> | |
| 95 <Compile Include="JSON\JSONGrammar.cs" /> | |
| 96 <Compile Include="JSON\JSONParser.cs" /> | |
| 97 <Compile Include="JSON\JSONScanner.cs" /> | |
| 98 <Compile Include="JSON\JsonTokenType.cs" /> | |
| 99 <Compile Include="JSON\JSONWriter.cs" /> | |
| 58 | 100 <Compile Include="JSON\JSONXmlReader.cs" /> |
| 60 | 101 <Compile Include="JSON\JSONXmlReaderOptions.cs" /> |
| 55 | 102 <Compile Include="JSON\StringTranslator.cs" /> |
| 15 | 103 <Compile Include="Parallels\DispatchPool.cs" /> |
| 104 <Compile Include="Parallels\ArrayTraits.cs" /> | |
| 14 | 105 <Compile Include="Parallels\MTQueue.cs" /> |
| 12 | 106 <Compile Include="Parallels\WorkerPool.cs" /> |
| 55 | 107 <Compile Include="Parsing\Alphabet.cs" /> |
| 108 <Compile Include="Parsing\AlphabetBase.cs" /> | |
| 109 <Compile Include="Parsing\AltToken.cs" /> | |
| 110 <Compile Include="Parsing\BinaryToken.cs" /> | |
| 111 <Compile Include="Parsing\CatToken.cs" /> | |
| 112 <Compile Include="Parsing\CDFADefinition.cs" /> | |
| 113 <Compile Include="Parsing\DFABuilder.cs" /> | |
| 114 <Compile Include="Parsing\DFADefinitionBase.cs" /> | |
| 115 <Compile Include="Parsing\DFAStateDescriptor.cs" /> | |
| 116 <Compile Include="Parsing\DFAutomaton.cs" /> | |
| 117 <Compile Include="Parsing\EDFADefinition.cs" /> | |
| 118 <Compile Include="Parsing\EmptyToken.cs" /> | |
| 119 <Compile Include="Parsing\EndToken.cs" /> | |
| 120 <Compile Include="Parsing\EnumAlphabet.cs" /> | |
| 121 <Compile Include="Parsing\Grammar.cs" /> | |
| 122 <Compile Include="Parsing\IAlphabet.cs" /> | |
| 123 <Compile Include="Parsing\IDFADefinition.cs" /> | |
| 124 <Compile Include="Parsing\IVisitor.cs" /> | |
| 125 <Compile Include="Parsing\ParserException.cs" /> | |
| 126 <Compile Include="Parsing\Scanner.cs" /> | |
| 127 <Compile Include="Parsing\StarToken.cs" /> | |
| 128 <Compile Include="Parsing\SymbolToken.cs" /> | |
| 129 <Compile Include="Parsing\Token.cs" /> | |
| 40 | 130 <Compile Include="ServiceLocator.cs" /> |
| 7 | 131 <Compile Include="TaskController.cs" /> |
| 132 <Compile Include="ProgressInitEventArgs.cs" /> | |
| 2 | 133 <Compile Include="Properties\AssemblyInfo.cs" /> |
| 11 | 134 <Compile Include="Parallels\AsyncPool.cs" /> |
| 2 | 135 <Compile Include="Safe.cs" /> |
| 7 | 136 <Compile Include="ValueEventArgs.cs" /> |
| 72 | 137 <Compile Include="PromiseExtensions.cs" /> |
| 138 <Compile Include="SyncContextPromise.cs" /> | |
| 92 | 139 <Compile Include="Diagnostics\OperationContext.cs" /> |
| 140 <Compile Include="Diagnostics\TraceContext.cs" /> | |
| 141 <Compile Include="Diagnostics\LogEventArgs.cs" /> | |
| 142 <Compile Include="Diagnostics\LogEventArgsT.cs" /> | |
| 143 <Compile Include="Diagnostics\Extensions.cs" /> | |
| 93 | 144 <Compile Include="IComponentContainer.cs" /> |
| 104 | 145 <Compile Include="PromiseEventType.cs" /> |
| 116 | 146 <Compile Include="ComponentContainer.cs" /> |
| 117 | 147 <Compile Include="DisposablePool.cs" /> |
| 148 <Compile Include="ObjectPool.cs" /> | |
|
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
149 <Compile Include="Parallels\AsyncQueue.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
150 <Compile Include="PromiseT.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
151 <Compile Include="IDeferred.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
152 <Compile Include="IDeferredT.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
153 <Compile Include="AbstractPromise.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
154 <Compile Include="Promise.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
155 <Compile Include="PromiseTransientException.cs" /> |
|
128
6241bff0cd64
Added Signal class a lightweight alternative to ManualResetEvent
cin
parents:
127
diff
changeset
|
156 <Compile Include="Parallels\Signal.cs" /> |
| 129 | 157 <Compile Include="Parallels\SharedLock.cs" /> |
| 2 | 158 </ItemGroup> |
| 159 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
| 11 | 160 <ItemGroup /> |
| 72 | 161 <ProjectExtensions> |
| 162 <MonoDevelop> | |
| 163 <Properties> | |
| 164 <Policies> | |
| 165 <CSharpFormattingPolicy IndentSwitchBody="True" NamespaceBraceStyle="EndOfLine" ClassBraceStyle="EndOfLine" InterfaceBraceStyle="EndOfLine" StructBraceStyle="EndOfLine" EnumBraceStyle="EndOfLine" MethodBraceStyle="EndOfLine" ConstructorBraceStyle="EndOfLine" DestructorBraceStyle="EndOfLine" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" NewLineBeforeConstructorInitializerColon="NewLine" NewLineAfterConstructorInitializerColon="SameLine" BeforeIndexerDeclarationBracket="False" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" /> | |
| 166 <TextStylePolicy FileWidth="120" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" /> | |
| 167 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" /> | |
| 168 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="application/xml" /> | |
| 169 <XmlFormattingPolicy inheritsSet="Mono" inheritsScope="application/xml" scope="application/xml" /> | |
| 170 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" /> | |
| 171 <NameConventionPolicy> | |
| 172 <Rules> | |
| 173 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 174 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 175 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 176 <RequiredPrefixes> | |
| 177 <String>I</String> | |
| 178 </RequiredPrefixes> | |
| 179 </NamingRule> | |
| 180 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 181 <RequiredSuffixes> | |
| 182 <String>Attribute</String> | |
| 183 </RequiredSuffixes> | |
| 184 </NamingRule> | |
| 185 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 186 <RequiredSuffixes> | |
| 187 <String>EventArgs</String> | |
| 188 </RequiredSuffixes> | |
| 189 </NamingRule> | |
| 190 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 191 <RequiredSuffixes> | |
| 192 <String>Exception</String> | |
| 193 </RequiredSuffixes> | |
| 194 </NamingRule> | |
| 195 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 196 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" /> | |
| 197 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 198 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" /> | |
| 199 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
| 200 <RequiredPrefixes> | |
| 201 <String>m_</String> | |
| 202 </RequiredPrefixes> | |
| 203 </NamingRule> | |
| 204 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True"> | |
| 205 <RequiredPrefixes> | |
| 206 <String>_</String> | |
| 207 </RequiredPrefixes> | |
| 208 </NamingRule> | |
| 209 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
| 210 <RequiredPrefixes> | |
| 211 <String>m_</String> | |
| 212 </RequiredPrefixes> | |
| 213 </NamingRule> | |
| 214 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 215 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 216 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 217 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 218 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 219 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 220 <RequiredPrefixes> | |
| 221 <String>T</String> | |
| 222 </RequiredPrefixes> | |
| 223 </NamingRule> | |
| 224 </Rules> | |
| 225 </NameConventionPolicy> | |
| 226 </Policies> | |
| 227 </Properties> | |
| 228 </MonoDevelop> | |
| 229 </ProjectExtensions> | |
| 0 | 230 </Project> |
