tool/TeamCity.Docker/IGenerateOptions.cs (11 lines of code) (raw):

namespace TeamCity.Docker { using IoC; internal interface IGenerateOptions: IOptions { [NotNull] string TargetPath { get; } [NotNull] string TeamCityDslPath { get; } [NotNull] string TeamCityBuildConfigurationId { get; } [NotNull] string TeamCityDockerRegistryId { get; } } }