Changeset 7582
- Timestamp:
- 03/07/12 19:14:08 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 5 added
- 2 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs
r7409 r7582 26 26 using System.Threading.Tasks; 27 27 using System.Windows.Forms; 28 using HeuristicLab.Clients.Hive.Views;29 28 using HeuristicLab.Collections; 30 29 using HeuristicLab.Common; 31 30 using HeuristicLab.Core; 32 31 using HeuristicLab.MainForm; 32 using HeuristicLab.MainForm.WindowsForms; 33 33 using HeuristicLab.Optimization; 34 34 using HeuristicLab.PluginInfrastructure; -
trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HeuristicLab.Clients.Hive.Views-3.3.csproj
r7410 r7582 165 165 <None Include="Plugin.cs.frame" /> 166 166 <Compile Include="Plugin.cs" /> 167 <Compile Include="Progress\ProgressView.cs">168 <SubType>UserControl</SubType>169 </Compile>170 <Compile Include="Progress\ProgressView.designer.cs">171 <DependentUpon>ProgressView.cs</DependentUpon>172 </Compile>173 167 <Compile Include="Properties\AssemblyInfo.cs" /> 174 168 <None Include="Properties\AssemblyInfo.cs.frame" /> -
trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs
r7259 r7582 21 21 22 22 using System; 23 using System.Threading.Tasks; 23 24 using System.Windows.Forms; 24 25 using HeuristicLab.MainForm; 25 using System.Threading.Tasks;26 using HeuristicLab.MainForm.WindowsForms; 26 27 using HeuristicLab.PluginInfrastructure; 27 28 … … 75 76 FinishProgressView(); 76 77 ErrorHandling.ShowErrorDialog(this, "An error occured while resuming the task.", t.Exception); 77 }, TaskContinuationOptions.OnlyOnFaulted); 78 }, TaskContinuationOptions.OnlyOnFaulted); 78 79 } 79 80 -
trunk/sources/HeuristicLab.Clients.Hive/3.3/HeuristicLab.Clients.Hive-3.3.csproj
r7249 r7582 155 155 <Compile Include="Util\PersistenceUtil.cs" /> 156 156 <Compile Include="Util\PluginUtil.cs" /> 157 <Compile Include="Progress\IProgress.cs" />158 <Compile Include="Progress\IProgressReporter.cs" />159 <Compile Include="Progress\Progress.cs" />160 157 <Compile Include="Properties\AssemblyInfo.cs" /> 161 158 <None Include="Properties\AssemblyInfo.cs.frame" /> … … 224 221 <Private>False</Private> 225 222 </ProjectReference> 223 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.3\HeuristicLab.MainForm-3.3.csproj"> 224 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 225 <Name>HeuristicLab.MainForm-3.3</Name> 226 <Private>False</Private> 227 </ProjectReference> 226 228 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> 227 229 <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project> -
trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveClient.cs
r7259 r7582 30 30 using HeuristicLab.Common; 31 31 using HeuristicLab.Core; 32 using HeuristicLab.MainForm; 32 33 using HeuristicLab.PluginInfrastructure; 33 34 using TS = System.Threading.Tasks; … … 113 114 jobs = null; 114 115 throw; 115 } finally { 116 } 117 finally { 116 118 OnRefreshed(); 117 119 } … … 312 314 } 313 315 refreshableJob.Job.Modified = false; 314 } finally { 316 } 317 finally { 315 318 refreshableJob.IsProgressing = false; 316 319 } … … 414 417 if (!ae.InnerExceptions.All(e => e is TaskCanceledException)) throw ae; // for some reason the WaitAll throws a AggregateException containg a TaskCanceledException. i don't know where it comes from, however the tasks all finish properly, so for now just ignore it 415 418 } 416 } finally { 419 } 420 finally { 417 421 if (!semaphoreReleased) taskUploadSemaphore.Release(); 418 422 } … … 465 469 } 466 470 refreshableJob.OnLoaded(); 467 } finally { 471 } 472 finally { 468 473 refreshableJob.IsProgressing = false; 469 474 } -
trunk/sources/HeuristicLab.Clients.Hive/3.3/Plugin.cs.frame
r7259 r7582 35 35 [PluginDependency("HeuristicLab.Core", "3.3")] 36 36 [PluginDependency("HeuristicLab.Hive", "3.3")] 37 [PluginDependency("HeuristicLab.MainForm", "3.3")] 37 38 [PluginDependency("HeuristicLab.Optimization", "3.3")] 38 39 [PluginDependency("HeuristicLab.Persistence", "3.3")] -
trunk/sources/HeuristicLab.Clients.Hive/3.3/RefreshableJob.cs
r7409 r7582 28 28 using HeuristicLab.Common; 29 29 using HeuristicLab.Core; 30 using HeuristicLab.MainForm; 30 31 31 32 namespace HeuristicLab.Clients.Hive { -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/HeuristicLab.MainForm.WindowsForms-3.3.csproj
r7021 r7582 186 186 </Compile> 187 187 <Compile Include="ToolBarItem.cs" /> 188 <Compile Include="Views\ProgressView.cs"> 189 <SubType>UserControl</SubType> 190 </Compile> 191 <Compile Include="Views\ProgressView.designer.cs"> 192 <DependentUpon>ProgressView.cs</DependentUpon> 193 </Compile> 188 194 <Compile Include="Views\View.cs"> 189 195 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.MainForm/3.3/HeuristicLab.MainForm-3.3.csproj
r6866 r7582 116 116 <None Include="Plugin.cs.frame" /> 117 117 <Compile Include="Interfaces\IConfigureableView.cs" /> 118 <Compile Include="Interfaces\IProgress.cs" /> 119 <Compile Include="Interfaces\IProgressReporter.cs" /> 118 120 <Compile Include="Plugin.cs" /> 121 <Compile Include="Progress.cs" /> 119 122 <Compile Include="ViewAttribute.cs" /> 120 123 <Compile Include="Interfaces\IContentView.cs" />
Note: See TracChangeset
for help on using the changeset viewer.