Changeset 3047
- Timestamp:
- 03/15/10 22:21:09 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
- 1 copied
- 31 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/HeuristicLab.Data.Views-3.3.csproj
r2973 r3047 85 85 </ItemGroup> 86 86 <ItemGroup> 87 <Compile Include="BoolDataView.cs"> 87 <None Include="HeuristicLabDataViewsPlugin.cs.frame" /> 88 <Compile Include="BoolValueView.cs"> 88 89 <SubType>UserControl</SubType> 89 90 </Compile> 90 <Compile Include="Bool DataView.Designer.cs">91 <DependentUpon>Bool DataView.cs</DependentUpon>91 <Compile Include="BoolValueView.Designer.cs"> 92 <DependentUpon>BoolValueView.cs</DependentUpon> 92 93 </Compile> 93 <None Include="HeuristicLabDataViewsPlugin.cs.frame" /> 94 <Compile Include="ComparisonDataView.cs"> 94 <Compile Include="ComparisonView.cs"> 95 95 <SubType>UserControl</SubType> 96 96 </Compile> 97 <Compile Include="ComparisonDataView.Designer.cs"> 98 <DependentUpon>ComparisonDataView.cs</DependentUpon> 99 </Compile> 100 <Compile Include="StringConvertibleArrayDataView.cs"> 101 <SubType>UserControl</SubType> 102 </Compile> 103 <Compile Include="StringConvertibleArrayDataView.Designer.cs"> 104 <DependentUpon>StringConvertibleArrayDataView.cs</DependentUpon> 105 </Compile> 106 <Compile Include="StringConvertibleDataView.cs"> 107 <SubType>UserControl</SubType> 108 </Compile> 109 <Compile Include="StringConvertibleDataView.Designer.cs"> 110 <DependentUpon>StringConvertibleDataView.cs</DependentUpon> 97 <Compile Include="ComparisonView.Designer.cs"> 98 <DependentUpon>ComparisonView.cs</DependentUpon> 111 99 </Compile> 112 100 <Compile Include="HeuristicLabDataViewsPlugin.cs" /> 113 101 <Compile Include="Properties\AssemblyInfo.cs" /> 114 <Compile Include="StringConvertible MatrixDataView.cs">102 <Compile Include="StringConvertibleArrayView.cs"> 115 103 <SubType>UserControl</SubType> 116 104 </Compile> 117 <Compile Include="StringConvertibleMatrixDataView.Designer.cs"> 118 <DependentUpon>StringConvertibleMatrixDataView.cs</DependentUpon> 105 <Compile Include="StringConvertibleArrayView.Designer.cs"> 106 <DependentUpon>StringConvertibleArrayView.cs</DependentUpon> 107 </Compile> 108 <Compile Include="StringConvertibleMatrixView.cs"> 109 <SubType>UserControl</SubType> 110 </Compile> 111 <Compile Include="StringConvertibleMatrixView.Designer.cs"> 112 <DependentUpon>StringConvertibleMatrixView.cs</DependentUpon> 113 </Compile> 114 <Compile Include="StringConvertibleValueView.cs"> 115 <SubType>UserControl</SubType> 116 </Compile> 117 <Compile Include="StringConvertibleValueView.Designer.cs"> 118 <DependentUpon>StringConvertibleValueView.cs</DependentUpon> 119 119 </Compile> 120 120 </ItemGroup> -
trunk/sources/HeuristicLab.Data/3.3/HeuristicLab.Data-3.3.csproj
r2973 r3047 100 100 </ItemGroup> 101 101 <ItemGroup> 102 <Compile Include="BoolData.cs">103 <SubType>Code</SubType>104 </Compile>105 <Compile Include="BoolArrayData.cs" />106 <Compile Include="BoolMatrixData.cs" />107 102 <None Include="HeuristicLabDataPlugin.cs.frame" /> 103 <Compile Include="BoolArray.cs" /> 104 <Compile Include="BoolMatrix.cs" /> 105 <Compile Include="BoolValue.cs" /> 108 106 <Compile Include="Comparison.cs" /> 109 <Compile Include="ComparisonData.cs" /> 110 <Compile Include="IStringConvertibleArrayData.cs" /> 111 <Compile Include="StringMatrixData.cs" /> 112 <Compile Include="StringArrayData.cs" /> 107 <Compile Include="ComparisonType.cs" /> 108 <Compile Include="DateTimeValue.cs" /> 109 <Compile Include="DoubleArray.cs" /> 110 <Compile Include="DoubleMatrix.cs" /> 111 <Compile Include="DoubleValue.cs" /> 113 112 <Compile Include="FormatPatterns.cs" /> 114 <Compile Include="DoubleArrayData.cs" />115 <Compile Include="DoubleMatrixData.cs" />116 <Compile Include="IntMatrixData.cs" />117 <Compile Include="ValueTypeMatrixData.cs" />118 <Compile Include="IStringConvertibleMatrixData.cs" />119 <Compile Include="ValueTypeArrayData.cs" />120 <Compile Include="IntArrayData.cs" />121 <Compile Include="StringData.cs">122 <SubType>Code</SubType>123 </Compile>124 <Compile Include="TimeSpanData.cs" />125 <Compile Include="DateTimeData.cs" />126 <Compile Include="DoubleData.cs">127 <SubType>Code</SubType>128 </Compile>129 <Compile Include="IStringConvertibleData.cs" />130 <Compile Include="ValueTypeData.cs">131 <SubType>Code</SubType>132 </Compile>133 113 <Compile Include="HeuristicLabDataPlugin.cs" /> 134 <Compile Include="IntData.cs"> 135 <SubType>Code</SubType> 136 </Compile> 114 <Compile Include="IntArray.cs" /> 115 <Compile Include="IntMatrix.cs" /> 116 <Compile Include="IntValue.cs" /> 117 <Compile Include="IStringConvertibleArray.cs" /> 118 <Compile Include="IStringConvertibleMatrix.cs" /> 119 <Compile Include="IStringConvertibleValue.cs" /> 137 120 <Compile Include="Properties\AssemblyInfo.cs" /> 121 <Compile Include="StringArray.cs" /> 122 <Compile Include="StringMatrix.cs" /> 123 <Compile Include="StringValue.cs" /> 124 <Compile Include="TimeSpanValue.cs" /> 125 <Compile Include="ValueTypeArray.cs" /> 126 <Compile Include="ValueTypeMatrix.cs" /> 127 <Compile Include="ValueTypeValue.cs" /> 138 128 </ItemGroup> 139 129 <ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.