Changeset 7246 for trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views
- Timestamp:
- 12/30/11 01:54:44 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3
- Files:
-
- 2 deleted
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3
- Property svn:ignore
-
old new 2 2 obj 3 3 *.vs10x 4 *.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/BenchmarkAlgorithmView.Designer.cs
r7245 r7246 21 21 22 22 namespace HeuristicLab.Algorithms.Benchmarks.Views { 23 partial class Benchmark View {23 partial class BenchmarkAlgorithmView { 24 24 /// <summary> 25 25 /// Required designer variable. -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/BenchmarkAlgorithmView.cs
r7245 r7246 25 25 26 26 namespace HeuristicLab.Algorithms.Benchmarks.Views { 27 [View("Benchmark View")]28 [Content(typeof(Benchmark ), true)]29 public partial class Benchmark View : AlgorithmView {30 public new Benchmark Content {31 get { return (Benchmark )base.Content; }27 [View("BenchmarkAlgorithm View")] 28 [Content(typeof(BenchmarkAlgorithm), true)] 29 public partial class BenchmarkAlgorithmView : AlgorithmView { 30 public new BenchmarkAlgorithm Content { 31 get { return (BenchmarkAlgorithm)base.Content; } 32 32 set { base.Content = value; } 33 33 } 34 public Benchmark View() {34 public BenchmarkAlgorithmView() { 35 35 InitializeComponent(); 36 36 tabControl.TabPages.Remove(this.problemTabPage); -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/HeuristicLab.Algorithms.Benchmarks.Views-3.3.csproj
r7015 r7246 84 84 <Reference Include="System" /> 85 85 <Reference Include="System.Core" /> 86 <Reference Include="System.D rawing" />86 <Reference Include="System.Data" /> 87 87 <Reference Include="System.Windows.Forms" /> 88 <Reference Include="System.Xml.Linq" />89 <Reference Include="System.Data.DataSetExtensions" />90 <Reference Include="Microsoft.CSharp" />91 <Reference Include="System.Data" />92 88 <Reference Include="System.Xml" /> 93 89 </ItemGroup> 94 90 <ItemGroup> 95 <Compile Include="Benchmark View.cs">91 <Compile Include="BenchmarkAlgorithmView.cs"> 96 92 <SubType>UserControl</SubType> 97 93 </Compile> 98 <Compile Include="BenchmarkView.Designer.cs"> 99 <DependentUpon>BenchmarkView.cs</DependentUpon> 100 </Compile> 101 <Compile Include="IBenchmarkView.cs"> 102 <SubType>UserControl</SubType> 103 </Compile> 104 <Compile Include="IBenchmarkView.Designer.cs"> 105 <DependentUpon>IBenchmarkView.cs</DependentUpon> 94 <Compile Include="BenchmarkAlgorithmView.Designer.cs"> 95 <DependentUpon>BenchmarkAlgorithmView.cs</DependentUpon> 106 96 </Compile> 107 97 <Compile Include="Plugin.cs" /> … … 117 107 <Project>{068C70A7-8CAF-4AB6-8721-4564D62292BC}</Project> 118 108 <Name>HeuristicLab.Algorithms.Benchmarks-3.3</Name> 119 <Private>False</Private>120 </ProjectReference>121 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">122 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>123 <Name>HeuristicLab.Collections-3.3</Name>124 109 <Private>False</Private> 125 110 </ProjectReference> -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/Plugin.cs.frame
r7225 r7246 26 26 /// Plugin class for HeuristicLab.Algorithms.Benchmarks plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.Benchmarks.Views", "Provides views for benchmarking algorithms.", "3.3.6.$WCREV$")] 29 [PluginFile("HeuristicLab.Algorithms.Benchmarks.Views-3.3.dll", PluginFileType.Assembly)] 28 [Plugin("HeuristicLab.Algorithms.Benchmarks.Views", "Provides views for performance benchmark algorithms.", "3.3.6.$WCREV$")] 29 [PluginFile("HeuristicLab.Algorithms.Benchmarks.Views-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Algorithms.Benchmarks", "3.3")] 31 [PluginDependency("HeuristicLab.Common", "3.3")] 30 32 [PluginDependency("HeuristicLab.MainForm", "3.3")] 31 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 33 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 32 34 [PluginDependency("HeuristicLab.Optimization", "3.3")] 33 35 [PluginDependency("HeuristicLab.Optimization.Views", "3.3")] 34 [PluginDependency("HeuristicLab.Algorithms.Benchmarks", "3.3")]35 36 public class HeuristicLabAlgorithmsBenchmarksViewsPlugin : PluginBase { 36 37 } -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/Properties/AssemblyInfo.cs.frame
r7225 r7246 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.Benchmarks.Views")] 29 [assembly: AssemblyDescription(" Benchmarking")]29 [assembly: AssemblyDescription("Views of the HeuristicLab performance benchmark algorithms")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] … … 41 41 42 42 // The following GUID is for the ID of the typelib if this project is exposed to COM 43 [assembly: Guid(" 3E422463-0CE0-400D-9544-5C11D5818769")]43 [assembly: Guid("E4BF5E27-BFA8-4402-9B75-4BE3B91E012C")] 44 44 45 45 // Version information for an assembly consists of the following four values:
Note: See TracChangeset
for help on using the changeset viewer.