Changeset 10122
- Timestamp:
- 11/11/13 16:16:11 (11 years ago)
- Location:
- branches/HeuristicLab.ExternalEvaluation Scientific
- Files:
-
- 14 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/HeuristicLab.Problems.ExternalEvaluation.Scilab-3.3.csproj
r10094 r10122 79 79 <Reference Include="DotNet-Component-Scilab, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 80 80 <SpecificVersion>False</SpecificVersion> 81 <HintPath>. \DotNet-Component-Scilab.dll</HintPath>81 <HintPath>..\..\bin\DotNet-Component-Scilab.dll</HintPath> 82 82 </Reference> 83 83 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> … … 153 153 </ItemGroup> 154 154 <ItemGroup> 155 <Content Include="DotNet-Component-Scilab.dll">156 <CopyToOutputDirectory>Always</CopyToOutputDirectory>157 </Content>158 155 <Content Include="Scilab License.txt"> 159 156 <CopyToOutputDirectory>Always</CopyToOutputDirectory> -
branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/Plugin.cs.frame
r9747 r10122 30 30 [Plugin("HeuristicLab.Problems.ExternalEvaluation.Scilab", "3.3.8.$WCREV$")] 31 31 [PluginFile("HeuristicLab.Problems.ExternalEvaluation.Scilab-3.3.dll", PluginFileType.Assembly)] 32 [PluginFile("DotNet-Component-Sci Lab.dll",PluginFileType.Assembly)]32 [PluginFile("DotNet-Component-Scilab.dll",PluginFileType.Assembly)] 33 33 [PluginFile("Scilab License.txt", PluginFileType.License)] 34 34 [PluginDependency("HeuristicLab.Collections", "3.3")] … … 46 46 private const string scilab_PATH = @"SCIPATH"; 47 47 48 private static bool loadedOnce = false;49 50 48 public override void OnLoad() { 51 49 base.OnLoad(); 52 if (loadedOnce) return;53 50 54 51 var currentPath = Environment.GetEnvironmentVariable("path");
Note: See TracChangeset
for help on using the changeset viewer.