wangdon...@gmail.com
unread,Oct 8, 2018, 10:27:15 AM10/8/18Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to TortoiseSVN
i am unity game developer with windows os ,in my project i need some externals .take update my project for example,sample code like this
string arg = "/command:update /closeonend:0 /path:\"";
private static void SvnCommandRun(string arg)
{
string workDirectory = Application.dataPath.Remove(Application.dataPath.LastIndexOf("/Assets", StringComparison.Ordinal));
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
UseShellExecute = false,
CreateNoWindow = true,
FileName = "TortoiseProc",
Arguments = arg,
WorkingDirectory = workDirectory
});
}
but ,i don't know how to add a new property type of externals in typing code,not mouse operating.