Changeset 7966 for trunk/sources/HeuristicLab.DebugEngine
- Timestamp:
- 06/05/12 12:01:48 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.DebugEngine/3.3
- Files:
-
- 8 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DebugEngine/3.3/HeuristicLab.DebugEngine-3.3.csproj
r6866 r7966 86 86 <Reference Include="System.Core" /> 87 87 <Reference Include="System.Drawing" /> 88 <Reference Include="System.Windows.Forms" />89 <Reference Include="System.Xml.Linq" />90 <Reference Include="System.Data.DataSetExtensions" />91 <Reference Include="System.Data" />92 <Reference Include="System.Xml" />93 88 </ItemGroup> 94 89 <ItemGroup> 95 90 <Compile Include="OperatorTrace.cs" /> 96 91 <Compile Include="DebugEngine.cs" /> 97 <Compile Include="DebugEngineView.cs">98 <SubType>UserControl</SubType>99 </Compile>100 <Compile Include="DebugEngineView.Designer.cs">101 <DependentUpon>DebugEngineView.cs</DependentUpon>102 </Compile>103 92 <Compile Include="ExecutionStack.cs" /> 104 <Compile Include="ExecutionStackView.cs">105 <SubType>UserControl</SubType>106 </Compile>107 <Compile Include="ExecutionStackView.Designer.cs">108 <DependentUpon>ExecutionStackView.cs</DependentUpon>109 </Compile>110 93 <Compile Include="OperationChangedEventArgs.cs" /> 111 94 <Compile Include="OperationContent.cs" /> 112 <Compile Include="OperationContentView.cs">113 <SubType>UserControl</SubType>114 </Compile>115 <Compile Include="OperationContentView.Designer.cs">116 <DependentUpon>OperationContentView.cs</DependentUpon>117 </Compile>118 <Compile Include="OperatorTraceView.cs">119 <SubType>UserControl</SubType>120 </Compile>121 <Compile Include="OperatorTraceView.Designer.cs">122 <DependentUpon>OperatorTraceView.cs</DependentUpon>123 </Compile>124 95 <Compile Include="Plugin.cs" /> 125 96 <Compile Include="Properties\AssemblyInfo.cs" /> … … 147 118 <Private>False</Private> 148 119 </ProjectReference> 149 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj">150 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project>151 <Name>HeuristicLab.Core.Views-3.3</Name>152 <Private>False</Private>153 </ProjectReference>154 120 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 155 121 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 156 122 <Name>HeuristicLab.Core-3.3</Name> 157 <Private>False</Private>158 </ProjectReference>159 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj">160 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project>161 <Name>HeuristicLab.MainForm.WindowsForms-3.3</Name>162 <Private>False</Private>163 </ProjectReference>164 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.3\HeuristicLab.MainForm-3.3.csproj">165 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project>166 <Name>HeuristicLab.MainForm-3.3</Name>167 <Private>False</Private>168 </ProjectReference>169 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">170 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>171 <Name>HeuristicLab.Operators-3.3</Name>172 123 <Private>False</Private> 173 124 </ProjectReference> -
trunk/sources/HeuristicLab.DebugEngine/3.3/Plugin.cs.frame
r7259 r7966 30 30 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 31 31 [PluginDependency("HeuristicLab.Core", "3.3")] 32 [PluginDependency("HeuristicLab.Core.Views", "3.3")]33 [PluginDependency("HeuristicLab.MainForm", "3.3")]34 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]35 [PluginDependency("HeuristicLab.Operators", "3.3")]36 32 [PluginDependency("HeuristicLab.Persistence", "3.3")] 37 33 public class HeuristicLabDebugEnginePlugin : PluginBase { }
Note: See TracChangeset
for help on using the changeset viewer.