Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/19 13:28:34 (5 years ago)
Author:
dpiringe
Message:

#2924:

  • added base attribute CLIBaseAttribute for CLI attributes, which contains the property Description
  • changed inheritance from Attribute to CLIBaseAttribute for types: CommandAttribute, OptionAttribute and ValueAttribute
  • added comment in RunnerHost
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Isolation/RunnerHost.cs

    r17013 r17025  
    7878          RedirectStandardError = true,
    7979          CreateNoWindow = false,
    80           UserName = string.IsNullOrEmpty(UserName) ? null : UserName, // TODO: accounts testen: https://docs.microsoft.com/en-us/windows/security/identity-protection/access-control/local-accounts#sec-localsystem
     80          UserName = string.IsNullOrEmpty(UserName) ? null : UserName, // to use Local accounts (LocalService, LocalSystem, ...) the process has to run already as Service
    8181          PasswordInClearText = string.IsNullOrEmpty(Password) ? null : Password,
    8282          Domain = string.IsNullOrEmpty(Domain) ? null : Domain,
Note: See TracChangeset for help on using the changeset viewer.