Changeset 1694 for trunk/sources/HeuristicLab.Selection
- Timestamp:
- 04/28/09 15:44:18 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Selection/3.3
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Selection/3.3/HeuristicLab.Selection-3.3.csproj
r1692 r1694 5 5 <ProductVersion>9.0.30729</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 <ProjectGuid>{ F7CF0571-25CB-43D5-8443-0843A1E2861A}</ProjectGuid>7 <ProjectGuid>{2C36CD4F-E5F5-43A4-801A-201EA895FE17}</ProjectGuid> 8 8 <OutputType>Library</OutputType> 9 9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 10 <RootNamespace>HeuristicLab.Selection</RootNamespace> 11 <AssemblyName>HeuristicLab.Selection-3. 2</AssemblyName>11 <AssemblyName>HeuristicLab.Selection-3.3</AssemblyName> 12 12 <SignAssembly>true</SignAssembly> 13 13 <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile> … … 17 17 <UpgradeBackupLocation> 18 18 </UpgradeBackupLocation> 19 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 19 20 </PropertyGroup> 20 21 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 35 36 <WarningLevel>4</WarningLevel> 36 37 <TreatWarningsAsErrors>false</TreatWarningsAsErrors> 37 <DocumentationFile>bin\Release\HeuristicLab.Selection-3. 2.XML</DocumentationFile>38 <DocumentationFile>bin\Release\HeuristicLab.Selection-3.3.xml</DocumentationFile> 38 39 </PropertyGroup> 39 40 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 73 74 <ItemGroup> 74 75 <Reference Include="System" /> 76 <Reference Include="System.Core"> 77 <RequiredTargetFramework>3.5</RequiredTargetFramework> 78 </Reference> 75 79 <Reference Include="System.Data" /> 76 80 <Reference Include="System.Xml" /> … … 98 102 </ItemGroup> 99 103 <ItemGroup> 100 <ProjectReference Include="..\..\HeuristicLab.Core\3. 2\HeuristicLab.Core-3.2.csproj">101 <Project>{ F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>102 <Name>HeuristicLab.Core-3. 2</Name>104 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 105 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 106 <Name>HeuristicLab.Core-3.3</Name> 103 107 </ProjectReference> 104 <ProjectReference Include="..\..\HeuristicLab.Data\3. 2\HeuristicLab.Data-3.2.csproj">105 <Project>{ F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>106 <Name>HeuristicLab.Data-3. 2</Name>108 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> 109 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 110 <Name>HeuristicLab.Data-3.3</Name> 107 111 </ProjectReference> 108 <ProjectReference Include="..\..\HeuristicLab.Operators\3. 2\HeuristicLab.Operators-3.2.csproj">109 <Project>{ A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>110 <Name>HeuristicLab.Operators-3. 2</Name>112 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> 113 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> 114 <Name>HeuristicLab.Operators-3.3</Name> 111 115 </ProjectReference> 112 116 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> -
trunk/sources/HeuristicLab.Selection/3.3/HeuristicLabSelectionPlugin.cs
r1530 r1694 29 29 /// Plugin class for HeuristicLab.Selection plugin. 30 30 /// </summary> 31 [ClassInfo(Name = "HeuristicLab.Selection-3. 2")]32 [PluginFile(Filename = "HeuristicLab.Selection-3. 2.dll", Filetype = PluginFileType.Assembly)]33 [Dependency(Dependency = "HeuristicLab.Core-3. 2")]34 [Dependency(Dependency = "HeuristicLab.Data-3. 2")]35 [Dependency(Dependency = "HeuristicLab.Operators-3. 2")]31 [ClassInfo(Name = "HeuristicLab.Selection-3.3")] 32 [PluginFile(Filename = "HeuristicLab.Selection-3.3.dll", Filetype = PluginFileType.Assembly)] 33 [Dependency(Dependency = "HeuristicLab.Core-3.3")] 34 [Dependency(Dependency = "HeuristicLab.Data-3.3")] 35 [Dependency(Dependency = "HeuristicLab.Operators-3.3")] 36 36 public class HeuristicLabSelectionPlugin : PluginBase { 37 37 }
Note: See TracChangeset
for help on using the changeset viewer.