I want to know how to get the latest version of a project.
I'm using Vault Client .NET API.
How do I get the latest version a project using .NET API?
Moderator: SourceGear
Re: How do I get the latest version a project using .NET API
Here is a basic get on a folder.
Code: Select all
GetOptions getOptions = new GetOptions();
getOptions.Recursive = true;
GetOperations.ProcessCommandGet(new string[] { diskPath }, getOptions);
Beth Kieler
SourceGear Technical Support
SourceGear Technical Support
Re: How do I get the latest version a project using .NET API
Thank you Beth. That's the exact solution to my problem.