Changeset 9363 for branches/OaaS/HeuristicLab.DebugEngine
- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.DebugEngine/3.3/DebugEngine.cs
r7259 r9363 155 155 cancellationTokenSource = new CancellationTokenSource(); 156 156 stopPending = false; 157 lastUpdateTime = DateTime. Now;157 lastUpdateTime = DateTime.UtcNow; 158 158 timer.Start(); 159 159 try { … … 166 166 } 167 167 timer.Stop(); 168 ExecutionTime += DateTime. Now - lastUpdateTime;168 ExecutionTime += DateTime.UtcNow - lastUpdateTime; 169 169 cancellationTokenSource.Dispose(); 170 170 cancellationTokenSource = null; … … 242 242 243 243 OnStarted(); 244 lastUpdateTime = DateTime. Now;244 lastUpdateTime = DateTime.UtcNow; 245 245 timer.Start(); 246 246 try { … … 253 253 finally { 254 254 timer.Stop(); 255 ExecutionTime += DateTime. Now - lastUpdateTime;255 ExecutionTime += DateTime.UtcNow - lastUpdateTime; 256 256 257 257 if (IsAtBreakpoint) … … 263 263 System.Timers.Timer timer = (System.Timers.Timer)sender; 264 264 timer.Enabled = false; 265 DateTime now = DateTime. Now;265 DateTime now = DateTime.UtcNow; 266 266 ExecutionTime += now - lastUpdateTime; 267 267 lastUpdateTime = now; -
branches/OaaS/HeuristicLab.DebugEngine/3.3/HeuristicLab.DebugEngine-3.3.csproj
r7966 r9363 136 136 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 137 137 <PropertyGroup> 138 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)138 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 139 139 set ProjectDir=$(ProjectDir) 140 140 set SolutionDir=$(SolutionDir) … … 142 142 143 143 call PreBuildEvent.cmd 144 </PreBuildEvent> 145 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 146 export ProjectDir=$(ProjectDir) 147 export SolutionDir=$(SolutionDir) 148 149 $SolutionDir/PreBuildEvent.sh 144 150 </PreBuildEvent> 145 151 </PropertyGroup> -
branches/OaaS/HeuristicLab.DebugEngine/3.3/Plugin.cs.frame
r7966 r9363 24 24 namespace HeuristicLab.DebugEngine { 25 25 26 [Plugin("HeuristicLab.DebugEngine", "3.3. 6.$WCREV$")]26 [Plugin("HeuristicLab.DebugEngine", "3.3.7.$WCREV$")] 27 27 [PluginFile("HeuristicLab.DebugEngine-3.3.dll", PluginFileType.Assembly)] 28 28 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/OaaS/HeuristicLab.DebugEngine/3.3/Properties/AssemblyInfo.cs.frame
r7259 r9363 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 6.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.7.$WCREV$")] -
branches/OaaS/HeuristicLab.DebugEngine/3.3/Utils.cs
r7259 r9363 36 36 if (obj == null) 37 37 return "null"; 38 return TypeNameParser.Parse(obj.GetType(). ToString()).GetTypeNameInCode(true);38 return TypeNameParser.Parse(obj.GetType().FullName).GetTypeNameInCode(true); 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.