Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/13 15:46:45 (11 years ago)
Author:
abeham
Message:

#2088:

  • Removed bin folder as a DeploymentItem and added it as a path to search for assemblies
    • Start of unit tests is greatly sped up
  • Changed PluginLoader to use AppDomain.CurrentDomain.BaseDirectory as directory for loading plugins
  • Pruned references in .csproj and set CopyLocal to false for all referenced HL assemblies
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/PluginLoader.cs

    r9764 r9792  
    3636
    3737    static PluginLoader() {
    38       foreach (string path in Directory.EnumerateFiles(Environment.CurrentDirectory).Where(IsRelevantAssemblyPath)) {
     38      foreach (string path in Directory.EnumerateFiles(AppDomain.CurrentDomain.BaseDirectory).Where(IsRelevantAssemblyPath)) {
    3939        try {
    4040          Assembly.LoadFrom(path);
Note: See TracChangeset for help on using the changeset viewer.