public RestoreCommand(ITestOutputHelper log, string projectPath, string relativePathToProject = null, MSBuildTest msbuild = null)
     : base(log, "Restore", projectPath, relativePathToProject, msbuild)
 {
 }
Example #2
0
 public PublishCommand(ITestOutputHelper log, string projectPath, MSBuildTest msbuild = null)
     : base(log, "Publish", projectPath, relativePathToProject: null, msbuild: msbuild)
 {
 }
        public GetValuesCommand(ITestOutputHelper log, string projectPath, string targetFramework,
                                string valueName, ValueType valueType = ValueType.Property, MSBuildTest msbuild = null)
            : base(log, "WriteValuesToFile", projectPath, relativePathToProject: null, msbuild: msbuild)
        {
            _targetFramework = targetFramework;

            _valueName = valueName;
            _valueType = valueType;
        }
 public TizenPackageCommand(ITestOutputHelper log, string projectRootPath, string relativePathToProject = null, MSBuildTest msbuild = null)
     : base(log, "TizenPackage", projectRootPath, relativePathToProject, msbuild)
 {
 }
        public MSBuildCommand(ITestOutputHelper log, string target, string projectRootPath, string relativePathToProject = null, MSBuildTest msbuild = null)
            : base(log)
        {
            MSBuild = msbuild ?? MSBuildTest.Stage0MSBuild;
            Target  = target;

            _projectRootPath = projectRootPath;
            ProjectFile      = FindProjectFile(ref _projectRootPath, relativePathToProject);
        }