##// END OF EJS Templates
.csproj changes
cin -
r220:42814145d472 v2
parent child
Show More
@@ -1,277 +1,274
1 1 <?xml version="1.0" encoding="utf-8"?>
2 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3 <PropertyGroup>
4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid>
7 7 <OutputType>Library</OutputType>
8 8 <RootNamespace>Implab</RootNamespace>
9 9 <AssemblyName>Implab</AssemblyName>
10 10 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
11 <ReleaseVersion>0.2</ReleaseVersion>
12 <ProductVersion>8.0.30703</ProductVersion>
13 <SchemaVersion>2.0</SchemaVersion>
14 11 </PropertyGroup>
15 12 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16 13 <DebugSymbols>true</DebugSymbols>
17 14 <DebugType>full</DebugType>
18 15 <Optimize>false</Optimize>
19 16 <OutputPath>bin\Debug</OutputPath>
20 17 <DefineConstants>TRACE;DEBUG;</DefineConstants>
21 18 <ErrorReport>prompt</ErrorReport>
22 19 <WarningLevel>4</WarningLevel>
23 20 <ConsolePause>false</ConsolePause>
24 21 <RunCodeAnalysis>true</RunCodeAnalysis>
25 22 </PropertyGroup>
26 23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27 24 <DebugType>full</DebugType>
28 25 <Optimize>true</Optimize>
29 26 <OutputPath>bin\Release</OutputPath>
30 27 <ErrorReport>prompt</ErrorReport>
31 28 <WarningLevel>4</WarningLevel>
32 29 <ConsolePause>false</ConsolePause>
33 30 </PropertyGroup>
34 31 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' ">
35 32 <DebugSymbols>true</DebugSymbols>
36 33 <DebugType>full</DebugType>
37 34 <Optimize>false</Optimize>
38 35 <OutputPath>bin\Debug</OutputPath>
39 36 <DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants>
40 37 <ErrorReport>prompt</ErrorReport>
41 38 <WarningLevel>4</WarningLevel>
42 39 <RunCodeAnalysis>true</RunCodeAnalysis>
43 40 <ConsolePause>false</ConsolePause>
44 41 </PropertyGroup>
45 42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' ">
46 43 <Optimize>true</Optimize>
47 44 <OutputPath>bin\Release</OutputPath>
48 45 <ErrorReport>prompt</ErrorReport>
49 46 <WarningLevel>4</WarningLevel>
50 47 <ConsolePause>false</ConsolePause>
51 48 <DefineConstants>NET_4_5</DefineConstants>
52 49 </PropertyGroup>
53 50 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMono|AnyCPU' ">
54 51 <DebugSymbols>true</DebugSymbols>
55 52 <DebugType>full</DebugType>
56 53 <Optimize>false</Optimize>
57 54 <OutputPath>bin\Debug</OutputPath>
58 55 <DefineConstants>TRACE;DEBUG;NET_4_5;MONO</DefineConstants>
59 56 <ErrorReport>prompt</ErrorReport>
60 57 <WarningLevel>4</WarningLevel>
61 58 <RunCodeAnalysis>true</RunCodeAnalysis>
62 59 <ConsolePause>false</ConsolePause>
63 60 </PropertyGroup>
64 61 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|AnyCPU' ">
65 62 <Optimize>true</Optimize>
66 63 <OutputPath>bin\Release</OutputPath>
67 64 <DefineConstants>NET_4_5;MONO;</DefineConstants>
68 65 <ErrorReport>prompt</ErrorReport>
69 66 <WarningLevel>4</WarningLevel>
70 67 <ConsolePause>false</ConsolePause>
71 68 </PropertyGroup>
72 69 <ItemGroup>
73 70 <Reference Include="System" />
74 71 <Reference Include="System.Xml" />
75 72 <Reference Include="mscorlib" />
76 73 </ItemGroup>
77 74 <ItemGroup>
78 75 <Compile Include="Components\StateChangeEventArgs.cs" />
79 76 <Compile Include="CustomEqualityComparer.cs" />
80 77 <Compile Include="Diagnostics\ConsoleTraceListener.cs" />
81 78 <Compile Include="Diagnostics\LogChannel.cs" />
82 79 <Compile Include="Diagnostics\LogicalOperation.cs" />
83 80 <Compile Include="Diagnostics\TextFileListener.cs" />
84 81 <Compile Include="Diagnostics\Trace.cs" />
85 82 <Compile Include="Diagnostics\TraceLog.cs" />
86 83 <Compile Include="Diagnostics\TraceEvent.cs" />
87 84 <Compile Include="Diagnostics\TraceEventType.cs" />
88 85 <Compile Include="Diagnostics\TraceSourceAttribute.cs" />
89 86 <Compile Include="ICancellable.cs" />
90 87 <Compile Include="IProgressHandler.cs" />
91 88 <Compile Include="IProgressNotifier.cs" />
92 89 <Compile Include="IPromiseT.cs" />
93 90 <Compile Include="IPromise.cs" />
94 91 <Compile Include="IServiceLocator.cs" />
95 92 <Compile Include="ITaskController.cs" />
96 93 <Compile Include="Parallels\DispatchPool.cs" />
97 94 <Compile Include="Parallels\ArrayTraits.cs" />
98 95 <Compile Include="Parallels\MTQueue.cs" />
99 96 <Compile Include="Parallels\WorkerPool.cs" />
100 97 <Compile Include="ProgressInitEventArgs.cs" />
101 98 <Compile Include="Properties\AssemblyInfo.cs" />
102 99 <Compile Include="Parallels\AsyncPool.cs" />
103 100 <Compile Include="Safe.cs" />
104 101 <Compile Include="SyncContextPromise.cs" />
105 102 <Compile Include="ValueEventArgs.cs" />
106 103 <Compile Include="PromiseExtensions.cs" />
107 104 <Compile Include="SyncContextPromiseT.cs" />
108 105 <Compile Include="Diagnostics\OperationContext.cs" />
109 106 <Compile Include="Diagnostics\TraceContext.cs" />
110 107 <Compile Include="Diagnostics\LogEventArgs.cs" />
111 108 <Compile Include="Diagnostics\LogEventArgsT.cs" />
112 109 <Compile Include="Diagnostics\Extensions.cs" />
113 110 <Compile Include="PromiseEventType.cs" />
114 111 <Compile Include="Parallels\AsyncQueue.cs" />
115 112 <Compile Include="PromiseT.cs" />
116 113 <Compile Include="IDeferred.cs" />
117 114 <Compile Include="IDeferredT.cs" />
118 115 <Compile Include="Promise.cs" />
119 116 <Compile Include="PromiseTransientException.cs" />
120 117 <Compile Include="Parallels\Signal.cs" />
121 118 <Compile Include="Parallels\SharedLock.cs" />
122 119 <Compile Include="Diagnostics\ILogWriter.cs" />
123 120 <Compile Include="Diagnostics\ListenerBase.cs" />
124 121 <Compile Include="Parallels\BlockingQueue.cs" />
125 122 <Compile Include="AbstractEvent.cs" />
126 123 <Compile Include="AbstractPromise.cs" />
127 124 <Compile Include="AbstractPromiseT.cs" />
128 125 <Compile Include="FuncTask.cs" />
129 126 <Compile Include="FuncTaskBase.cs" />
130 127 <Compile Include="FuncTaskT.cs" />
131 128 <Compile Include="ActionChainTaskBase.cs" />
132 129 <Compile Include="ActionChainTask.cs" />
133 130 <Compile Include="ActionChainTaskT.cs" />
134 131 <Compile Include="FuncChainTaskBase.cs" />
135 132 <Compile Include="FuncChainTask.cs" />
136 133 <Compile Include="FuncChainTaskT.cs" />
137 134 <Compile Include="ActionTaskBase.cs" />
138 135 <Compile Include="ActionTask.cs" />
139 136 <Compile Include="ActionTaskT.cs" />
140 137 <Compile Include="ICancellationToken.cs" />
141 138 <Compile Include="SuccessPromise.cs" />
142 139 <Compile Include="SuccessPromiseT.cs" />
143 140 <Compile Include="PromiseAwaiterT.cs" />
144 141 <Compile Include="PromiseAwaiter.cs" />
145 142 <Compile Include="Components\ComponentContainer.cs" />
146 143 <Compile Include="Components\Disposable.cs" />
147 144 <Compile Include="Components\DisposablePool.cs" />
148 145 <Compile Include="Components\ObjectPool.cs" />
149 146 <Compile Include="Components\ServiceLocator.cs" />
150 147 <Compile Include="Components\IInitializable.cs" />
151 148 <Compile Include="TaskController.cs" />
152 149 <Compile Include="Components\App.cs" />
153 150 <Compile Include="Components\IRunnable.cs" />
154 151 <Compile Include="Components\ExecutionState.cs" />
155 152 <Compile Include="Components\RunnableComponent.cs" />
156 153 <Compile Include="Components\IFactory.cs" />
157 154 <Compile Include="Automaton\IAlphabet.cs" />
158 155 <Compile Include="Automaton\ParserException.cs" />
159 156 <Compile Include="Automaton\IndexedAlphabetBase.cs" />
160 157 <Compile Include="Automaton\IAlphabetBuilder.cs" />
161 158 <Compile Include="Automaton\RegularExpressions\AltToken.cs" />
162 159 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" />
163 160 <Compile Include="Automaton\RegularExpressions\CatToken.cs" />
164 161 <Compile Include="Automaton\RegularExpressions\StarToken.cs" />
165 162 <Compile Include="Automaton\RegularExpressions\SymbolToken.cs" />
166 163 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" />
167 164 <Compile Include="Automaton\RegularExpressions\Token.cs" />
168 165 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" />
169 166 <Compile Include="Automaton\AutomatonTransition.cs" />
170 167 <Compile Include="Formats\JSON\JSONElementContext.cs" />
171 168 <Compile Include="Formats\JSON\JSONElementType.cs" />
172 169 <Compile Include="Formats\JSON\JSONGrammar.cs" />
173 170 <Compile Include="Formats\JSON\JSONParser.cs" />
174 171 <Compile Include="Formats\JSON\JSONScanner.cs" />
175 172 <Compile Include="Formats\JSON\JsonTokenType.cs" />
176 173 <Compile Include="Formats\JSON\JSONWriter.cs" />
177 174 <Compile Include="Formats\JSON\JSONXmlReader.cs" />
178 175 <Compile Include="Formats\JSON\JSONXmlReaderOptions.cs" />
179 176 <Compile Include="Formats\JSON\StringTranslator.cs" />
180 177 <Compile Include="Automaton\MapAlphabet.cs" />
181 178 <Compile Include="Formats\CharAlphabet.cs" />
182 179 <Compile Include="Formats\ByteAlphabet.cs" />
183 180 <Compile Include="Automaton\IDFATable.cs" />
184 181 <Compile Include="Automaton\IDFATableBuilder.cs" />
185 182 <Compile Include="Automaton\DFATable.cs" />
186 183 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitor.cs" />
187 184 <Compile Include="Automaton\RegularExpressions\ITaggedDFABuilder.cs" />
188 185 <Compile Include="Formats\TextScanner.cs" />
189 186 <Compile Include="Formats\StringScanner.cs" />
190 187 <Compile Include="Formats\ReaderScanner.cs" />
191 188 <Compile Include="Formats\ScannerContext.cs" />
192 189 <Compile Include="Formats\Grammar.cs" />
193 190 <Compile Include="Automaton\RegularExpressions\EndTokenT.cs" />
194 191 <Compile Include="Automaton\RegularExpressions\EndToken.cs" />
195 192 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitorT.cs" />
196 193 <Compile Include="Automaton\AutomatonConst.cs" />
197 194 <Compile Include="Automaton\RegularExpressions\RegularDFA.cs" />
198 195 <Compile Include="Components\LazyAndWeak.cs" />
199 196 <Compile Include="AbstractTask.cs" />
200 197 <Compile Include="AbstractTaskT.cs" />
201 198 <Compile Include="FailedPromise.cs" />
202 199 <Compile Include="FailedPromiseT.cs" />
203 200 <Compile Include="Components\PollingComponent.cs" />
204 201 </ItemGroup>
205 202 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
206 203 <ItemGroup />
207 204 <ProjectExtensions>
208 205 <MonoDevelop>
209 206 <Properties>
210 207 <Policies>
211 208 <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" />
212 209 <TextStylePolicy FileWidth="120" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
213 210 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" />
214 211 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="application/xml" />
215 212 <XmlFormattingPolicy inheritsSet="Mono" inheritsScope="application/xml" scope="application/xml" />
216 213 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
217 214 <NameConventionPolicy>
218 215 <Rules>
219 216 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
220 217 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
221 218 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
222 219 <RequiredPrefixes>
223 220 <String>I</String>
224 221 </RequiredPrefixes>
225 222 </NamingRule>
226 223 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
227 224 <RequiredSuffixes>
228 225 <String>Attribute</String>
229 226 </RequiredSuffixes>
230 227 </NamingRule>
231 228 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
232 229 <RequiredSuffixes>
233 230 <String>EventArgs</String>
234 231 </RequiredSuffixes>
235 232 </NamingRule>
236 233 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
237 234 <RequiredSuffixes>
238 235 <String>Exception</String>
239 236 </RequiredSuffixes>
240 237 </NamingRule>
241 238 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
242 239 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" />
243 240 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
244 241 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" />
245 242 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False">
246 243 <RequiredPrefixes>
247 244 <String>m_</String>
248 245 </RequiredPrefixes>
249 246 </NamingRule>
250 247 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True">
251 248 <RequiredPrefixes>
252 249 <String>_</String>
253 250 </RequiredPrefixes>
254 251 </NamingRule>
255 252 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False">
256 253 <RequiredPrefixes>
257 254 <String>m_</String>
258 255 </RequiredPrefixes>
259 256 </NamingRule>
260 257 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
261 258 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
262 259 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
263 260 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
264 261 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
265 262 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
266 263 <RequiredPrefixes>
267 264 <String>T</String>
268 265 </RequiredPrefixes>
269 266 </NamingRule>
270 267 </Rules>
271 268 </NameConventionPolicy>
272 269 </Policies>
273 270 </Properties>
274 271 </MonoDevelop>
275 272 </ProjectExtensions>
276 273 <ItemGroup />
277 274 </Project> No newline at end of file
General Comments 3
Under Review
author

Auto status change to "Under Review"

Approved
author

ok, latest stable version should be in default

You need to be logged in to leave comments. Login now