Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/19 17:15:59 (5 years ago)
Author:
dpiringe
Message:

#2924:

  • migrated PluginInfrastructure to .NET Standard
  • created a new .NET Core project HeuristicLab.PluginInfrastructure.Runner, which contains the logic to load and isolate assemblies, based on the new interfaces from HeuristicLab.PluginInfrastructure
  • recycled old plugin validation code
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2924_DotNetCoreMigration/HeuristicLab/3.3/Program.cs

    r15973 r16859  
    3737    /// <param name="args">Command line arguments</param>
    3838    static void Main(string[] args) {
    39       if ((!FrameworkVersionErrorDialog.NET4_5Installed && !FrameworkVersionErrorDialog.MonoInstalled)
     39      /*if ((!FrameworkVersionErrorDialog.NET4_5Installed && !FrameworkVersionErrorDialog.MonoInstalled)
    4040        || (FrameworkVersionErrorDialog.MonoInstalled && !FrameworkVersionErrorDialog.MonoCorrectVersionInstalled)) {
    4141        Application.EnableVisualStyles();
     
    6464          MessageBox.Show(ex.Message, "Exception", MessageBoxButtons.OK, MessageBoxIcon.Error);
    6565        }
    66       }
     66      }*/
    6767    }
    68 
     68    /*
    6969    private static void DiscoverPluginsAndRunOptimizerAsync(PluginManager pluginManager, string[] args) {
    7070      // STAThread is necessary for a UI component we are using in the application
     
    8282      t.SetApartmentState(ApartmentState.STA);
    8383      t.Start();
    84     }
     84    }*/
    8585  }
    8686}
Note: See TracChangeset for help on using the changeset viewer.