Changeset 15780 for branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis
- Timestamp:
- 02/15/18 11:03:40 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis
- Property svn:ignore
-
old new 12 12 *.nuget.props 13 13 *.nuget.targets 14 Plugin.cs
-
- Property svn:ignore
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis.csproj
r15771 r15780 8 8 <OutputType>Library</OutputType> 9 9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <RootNamespace>HeuristicLab.Problems.ProgramSynthesis .GenealogyAnalysis</RootNamespace>11 <AssemblyName>HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis </AssemblyName>12 <TargetFrameworkVersion>v4. 6.1</TargetFrameworkVersion>10 <RootNamespace>HeuristicLab.Problems.ProgramSynthesis</RootNamespace> 11 <AssemblyName>HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis-3.3</AssemblyName> 12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 13 13 <FileAlignment>512</FileAlignment> 14 <TargetFrameworkProfile /> 14 15 </PropertyGroup> 15 16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 107 108 <Compile Include="Operators\Interfaces\IManipulatorOperator.cs" /> 108 109 <Compile Include="Operators\RemovePopulationGraphFromResults.cs" /> 110 <Compile Include="Plugin.cs" /> 109 111 <Compile Include="Properties\AssemblyInfo.cs" /> 110 112 </ItemGroup> 113 <ItemGroup> 114 <None Include="Plugin.cs.frame" /> 115 </ItemGroup> 111 116 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 117 <PropertyGroup> 118 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 119 set ProjectDir=$(ProjectDir) 120 set SolutionDir=$(SolutionDir) 121 set Outdir=$(Outdir) 122 123 call PreBuildEvent.cmd 124 </PreBuildEvent> 125 </PropertyGroup> 112 126 </Project> -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis/Plugin.cs.frame
r15771 r15780 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis { 25 [Plugin("HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis", "Provides operators and related classes for genealogy analysis.", "3. 4.5.$WCREV$")]26 [PluginFile("HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis g-3.4.dll", PluginFileType.Assembly)]25 [Plugin("HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis", "Provides operators and related classes for genealogy analysis.", "3.3.1.$WCREV$")] 26 [PluginFile("HeuristicLab.Problems.ProgramSynthesis.GenealogyAnalysis-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Analysis", "3.3")] 28 28 [PluginDependency("HeuristicLab.Collections", "3.3")] … … 38 38 [PluginDependency("HeuristicLab.Persistence", "3.3")] 39 39 40 public class HeuristicLab .Problems.ProgramSynthesis.GenealogyAnalysisPlugin : PluginBase {40 public class HeuristicLabProblemsProgramSynthesisGenealogyAnalysisPlugin : PluginBase { 41 41 } 42 42 }
Note: See TracChangeset
for help on using the changeset viewer.