Changeset 2904 for trunk/sources/HeuristicLab.ExtLibs
- Timestamp:
- 03/01/10 21:20:01 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.SpringNET/1.3.0
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.SpringNET/1.3.0/HeuristicLab.SpringNET-1.3.0.csproj
r2849 r2904 86 86 <ItemGroup> 87 87 <None Include="HeuristicLab.snk" /> 88 <None Include="HeuristicLabSpringNetPlugin.cs.frame" /> 88 89 <None Include="Properties\AssemblyInfo.frame" /> 89 90 </ItemGroup> … … 125 126 set Outdir=$(Outdir) 126 127 127 call PreBuildEvent.cmd</PreBuildEvent> 128 call PreBuildEvent.cmd 129 SubWCRev "%25ProjectDir%25/" "%25ProjectDir%25/HeuristicLabSpringNetPlugin.cs.frame" "%25ProjectDir%25/HeuristicLabSpringNetPlugin.cs"</PreBuildEvent> 128 130 </PropertyGroup> 129 131 </Project> -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.SpringNET/1.3.0/HeuristicLabSpringNetPlugin.cs
r2847 r2904 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2009 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 6 27 7 28 namespace HeuristicLab.SpringNET { 8 [Plugin("HeuristicLab.SpringNET", "1.3.0")] 29 30 [Plugin("HeuristicLab.SpringNET", "1.3.0.2849")] 9 31 [PluginFile("HeuristicLab.SpringNET-1.3.0.dll", PluginFileType.Assembly)] 10 32 [PluginFile("Common.Logging.dll", PluginFileType.Assembly)] … … 12 34 [PluginFile("Spring.Core.dll", PluginFileType.Assembly)] 13 35 [PluginFile("Spring.Aop.dll", PluginFileType.Assembly)] 14 public class HeuristicLabSpringNetPlugin: PluginBase { 15 36 public class HeuristicLabSpringNetPlugin : PluginBase { 16 37 } 17 38 }
Note: See TracChangeset
for help on using the changeset viewer.