- Timestamp:
- 03/12/12 16:38:31 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/HeuristicLab.Clients.Hive.CloudManager-3.3.csproj
r7577 r7598 105 105 <DependentUpon>CloudResourcesView.cs</DependentUpon> 106 106 </Compile> 107 <Compile Include="Views\DeleteDeploymentView.cs"> 108 <SubType>Form</SubType> 109 </Compile> 110 <Compile Include="Views\DeleteDeploymentView.Designer.cs"> 111 <DependentUpon>DeleteDeploymentView.cs</DependentUpon> 112 </Compile> 107 113 <Compile Include="Views\DeploymentView.cs"> 108 114 <SubType>UserControl</SubType> … … 216 222 <EmbeddedResource Include="Views\CloudResourcesView.resx"> 217 223 <DependentUpon>CloudResourcesView.cs</DependentUpon> 224 </EmbeddedResource> 225 <EmbeddedResource Include="Views\DeleteDeploymentView.resx"> 226 <DependentUpon>DeleteDeploymentView.cs</DependentUpon> 218 227 </EmbeddedResource> 219 228 <EmbeddedResource Include="Views\DeploymentView.resx"> -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/CloudResourcesView.cs
r7441 r7598 329 329 HostedService hs = (HostedService)objParent; 330 330 Deployment dep = (Deployment)obj; 331 //call async 332 CloudManagerClient.Instance.Delete(dep, hs); 331 using (var form = new DeleteDeploymentView(dep, hs)) { 332 form.ShowDialog(); 333 } 333 334 } 334 335 }
Note: See TracChangeset
for help on using the changeset viewer.