Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/29/12 14:02:51 (12 years ago)
Author:
mkommend
Message:

#1777: Extracted unit tests into a separate solution.

Location:
trunk/sources
Files:
1 added
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources

    • Property svn:ignore
      •  

        old new  
        2020bin
        2121protoc.exe
         22_ReSharper.HeuristicLab 3.3 Tests
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/PluginLoader.cs

    r7913 r7915  
    2828
    2929namespace HeuristicLab_33.Tests {
    30   internal static class PluginLoader {
     30  public static class PluginLoader {
    3131    public const string ExecutableExtension = ".exe";
    3232    public const string AssemblyExtension = ".dll";
     
    3636
    3737    static PluginLoader() {
    38       foreach (string path in Directory.EnumerateFiles(Environment.CurrentDirectory).Where(s => IsRelevantAssemblyPath(s))) {
     38      //EnvDTE.DTE dte = (EnvDTE.DTE)Marshal.GetActiveObject("VisualStudio.DTE");
     39      //string solutionDir = System.IO.Path.GetDirectoryName(_applicationObject.Solution.FullName);
     40      foreach (string path in Directory.EnumerateFiles(Environment.CurrentDirectory).Where(IsRelevantAssemblyPath)) {
    3941        try {
    4042          Assembly.LoadFrom(path);
Note: See TracChangeset for help on using the changeset viewer.