Mercurial > pub > ImplabNet
comparison Implab/Implab.csproj @ 72:d67b95eddaf4 v2
promises refactoring
| author | cin |
|---|---|
| date | Thu, 04 Sep 2014 18:47:12 +0400 |
| parents | b4c2454d208e |
| children | 4439140706d0 |
comparison
equal
deleted
inserted
replaced
| 71:1714fd8678ef | 72:d67b95eddaf4 |
|---|---|
| 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
| 6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> | 6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> |
| 7 <OutputType>Library</OutputType> | 7 <OutputType>Library</OutputType> |
| 8 <RootNamespace>Implab</RootNamespace> | 8 <RootNamespace>Implab</RootNamespace> |
| 9 <AssemblyName>Implab</AssemblyName> | 9 <AssemblyName>Implab</AssemblyName> |
| 10 <ProductVersion>8.0.30703</ProductVersion> | |
| 11 <SchemaVersion>2.0</SchemaVersion> | |
| 10 </PropertyGroup> | 12 </PropertyGroup> |
| 11 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | 13 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| 12 <DebugSymbols>true</DebugSymbols> | 14 <DebugSymbols>true</DebugSymbols> |
| 13 <DebugType>full</DebugType> | 15 <DebugType>full</DebugType> |
| 14 <Optimize>false</Optimize> | 16 <Optimize>false</Optimize> |
| 97 <Compile Include="Properties\AssemblyInfo.cs" /> | 99 <Compile Include="Properties\AssemblyInfo.cs" /> |
| 98 <Compile Include="Promise.cs" /> | 100 <Compile Include="Promise.cs" /> |
| 99 <Compile Include="Parallels\AsyncPool.cs" /> | 101 <Compile Include="Parallels\AsyncPool.cs" /> |
| 100 <Compile Include="Safe.cs" /> | 102 <Compile Include="Safe.cs" /> |
| 101 <Compile Include="ValueEventArgs.cs" /> | 103 <Compile Include="ValueEventArgs.cs" /> |
| 104 <Compile Include="PromiseExtensions.cs" /> | |
| 105 <Compile Include="TransientPromiseException.cs" /> | |
| 106 <Compile Include="SyncContextPromise.cs" /> | |
| 102 </ItemGroup> | 107 </ItemGroup> |
| 103 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | 108 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
| 104 <ItemGroup /> | 109 <ItemGroup /> |
| 110 <ProjectExtensions> | |
| 111 <MonoDevelop> | |
| 112 <Properties> | |
| 113 <Policies> | |
| 114 <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" /> | |
| 115 <TextStylePolicy FileWidth="120" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" /> | |
| 116 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" /> | |
| 117 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="application/xml" /> | |
| 118 <XmlFormattingPolicy inheritsSet="Mono" inheritsScope="application/xml" scope="application/xml" /> | |
| 119 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" /> | |
| 120 <NameConventionPolicy> | |
| 121 <Rules> | |
| 122 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 123 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 124 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 125 <RequiredPrefixes> | |
| 126 <String>I</String> | |
| 127 </RequiredPrefixes> | |
| 128 </NamingRule> | |
| 129 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 130 <RequiredSuffixes> | |
| 131 <String>Attribute</String> | |
| 132 </RequiredSuffixes> | |
| 133 </NamingRule> | |
| 134 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 135 <RequiredSuffixes> | |
| 136 <String>EventArgs</String> | |
| 137 </RequiredSuffixes> | |
| 138 </NamingRule> | |
| 139 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 140 <RequiredSuffixes> | |
| 141 <String>Exception</String> | |
| 142 </RequiredSuffixes> | |
| 143 </NamingRule> | |
| 144 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 145 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" /> | |
| 146 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 147 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" /> | |
| 148 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
| 149 <RequiredPrefixes> | |
| 150 <String>m_</String> | |
| 151 </RequiredPrefixes> | |
| 152 </NamingRule> | |
| 153 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True"> | |
| 154 <RequiredPrefixes> | |
| 155 <String>_</String> | |
| 156 </RequiredPrefixes> | |
| 157 </NamingRule> | |
| 158 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
| 159 <RequiredPrefixes> | |
| 160 <String>m_</String> | |
| 161 </RequiredPrefixes> | |
| 162 </NamingRule> | |
| 163 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 164 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 165 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 166 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 167 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 168 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 169 <RequiredPrefixes> | |
| 170 <String>T</String> | |
| 171 </RequiredPrefixes> | |
| 172 </NamingRule> | |
| 173 </Rules> | |
| 174 </NameConventionPolicy> | |
| 175 </Policies> | |
| 176 </Properties> | |
| 177 </MonoDevelop> | |
| 178 </ProjectExtensions> | |
| 105 </Project> | 179 </Project> |
