예제 #1
0
        public void DeleteShelveset(TfsTeamProjectCollection tfsTeamProjectCollection, string shelvesetName, string shelvesetOwner)
        {
            this.Logger().Trace("DeleteShelveset ShelvesetName: {0} ShelvesetOwner: {1}", shelvesetName, shelvesetOwner);

            tfsTeamProjectCollection.GetVersionControlServer().DeleteShelveset(shelvesetName, shelvesetOwner);
        }
        public void DeleteShelveset(TfsTeamProjectCollection tfsTeamProjectCollection, string shelvesetName, string shelvesetOwner)
        {
            this.Logger().Trace("DeleteShelveset ShelvesetName: {0} ShelvesetOwner: {1}", shelvesetName, shelvesetOwner);

            tfsTeamProjectCollection.GetVersionControlServer().DeleteShelveset(shelvesetName, shelvesetOwner);
        }
예제 #3
0
        public Shelveset[] QueryShelvesets(TfsTeamProjectCollection tfsTeamProjectCollection, string shelvesetName = null, string shelvesetOwner = null)
        {
            this.Logger().Trace("QueryShelvesets ProjectCollection: {0} ShelvesetName: {1} ShelvesetOwner: {2}", tfsTeamProjectCollection.Name, shelvesetName, shelvesetOwner);

            return(tfsTeamProjectCollection.GetVersionControlServer().QueryShelvesets(shelvesetName, shelvesetOwner));
        }
        public Shelveset[] QueryShelvesets(TfsTeamProjectCollection tfsTeamProjectCollection, string shelvesetName = null, string shelvesetOwner = null)
        {
            this.Logger().Trace("QueryShelvesets ProjectCollection: {0} ShelvesetName: {1} ShelvesetOwner: {2}", tfsTeamProjectCollection.Name, shelvesetName, shelvesetOwner);

            return tfsTeamProjectCollection.GetVersionControlServer().QueryShelvesets(shelvesetName, shelvesetOwner);
        }