Changeset 51 for trunk/sources
- Timestamp:
- 03/06/08 02:07:41 (17 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Programmable/HeuristicLab.Operators.Programmable.csproj
r30 r51 44 44 </ItemGroup> 45 45 <ItemGroup> 46 <Compile Include="AddVariableInfoDialog.cs">47 <SubType>Form</SubType>48 </Compile>49 <Compile Include="AddVariableInfoDialog.Designer.cs">50 <DependentUpon>AddVariableInfoDialog.cs</DependentUpon>51 </Compile>52 46 <Compile Include="HeuristicLabOperatorsProgrammablePlugin.cs" /> 53 47 <Compile Include="ProgrammableOperator.cs" /> … … 73 67 <Name>HeuristicLab.Data</Name> 74 68 </ProjectReference> 69 <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj"> 70 <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project> 71 <Name>HeuristicLab.Operators</Name> 72 </ProjectReference> 75 73 <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 76 74 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> … … 79 77 </ItemGroup> 80 78 <ItemGroup> 81 <EmbeddedResource Include="AddVariableInfoDialog.resx">82 <DependentUpon>AddVariableInfoDialog.cs</DependentUpon>83 <SubType>Designer</SubType>84 </EmbeddedResource>85 79 <EmbeddedResource Include="ProgrammableOperatorView.resx"> 86 80 <DependentUpon>ProgrammableOperatorView.cs</DependentUpon> -
trunk/sources/HeuristicLab.Operators.Programmable/HeuristicLabOperatorsProgrammablePlugin.cs
r2 r51 30 30 [Dependency(Dependency = "HeuristicLab.Core")] 31 31 [Dependency(Dependency = "HeuristicLab.Data")] 32 [Dependency(Dependency = "HeuristicLab.Operators")] 32 33 public class HeuristicLabOperatorsProgrammablePlugin : PluginBase { 33 34 } -
trunk/sources/HeuristicLab.Operators.Programmable/ProgrammableOperatorView.cs
r2 r51 28 28 using System.Windows.Forms; 29 29 using HeuristicLab.Core; 30 using HeuristicLab.Operators; 30 31 31 32 namespace HeuristicLab.Operators.Programmable { -
trunk/sources/HeuristicLab.Operators/AddVariableInfoDialog.Designer.cs
r45 r51 20 20 #endregion 21 21 22 namespace HeuristicLab.Operators .Programmable{22 namespace HeuristicLab.Operators { 23 23 partial class AddVariableInfoDialog { 24 24 /// <summary> -
trunk/sources/HeuristicLab.Operators/AddVariableInfoDialog.cs
r45 r51 30 30 using HeuristicLab.Data; 31 31 32 namespace HeuristicLab.Operators .Programmable{32 namespace HeuristicLab.Operators { 33 33 public partial class AddVariableInfoDialog : Form { 34 34 private IVariableInfo myVariableInfo; -
trunk/sources/HeuristicLab.Operators/HeuristicLab.Operators.csproj
r46 r51 47 47 </ItemGroup> 48 48 <ItemGroup> 49 <Compile Include="AddVariableInfoDialog.cs"> 50 <SubType>Form</SubType> 51 </Compile> 52 <Compile Include="AddVariableInfoDialog.Designer.cs"> 53 <DependentUpon>AddVariableInfoDialog.cs</DependentUpon> 54 </Compile> 49 55 <Compile Include="CombinedOperator.cs" /> 50 56 <Compile Include="CombinedOperatorView.cs"> … … 113 119 </ItemGroup> 114 120 <ItemGroup> 121 <EmbeddedResource Include="AddVariableInfoDialog.resx"> 122 <DependentUpon>AddVariableInfoDialog.cs</DependentUpon> 123 </EmbeddedResource> 115 124 <EmbeddedResource Include="CombinedOperatorView.resx"> 116 125 <DependentUpon>CombinedOperatorView.cs</DependentUpon>
Note: See TracChangeset
for help on using the changeset viewer.