Problem contain attempting to use CCNetConfig on Win64.
THe latest build will run, and allow you to select a config file & version, but crashes immediately after that.
System.ArgumentException: The path is not of a legal form.
at System.IO.Path.NormalizePathFast(String path, Boolean fullCheck)
at System.IO.FileInfo..ctor(String fileName)
at CCNetConfig.UI.MainForm.OpenConfigurationFile()
at CCNetConfig.UI.MainForm.openConfigurationToolButton
THe crash happens in OpenConfigurationFile, by the lines
CreateConfigurationNode ( vfd.SelectedVersion );
this.addProjectToolButton.Enabled = true;
FileInfo file = new FileInfo ( vfd.FileName );
if ( file.Exists ) {
vfd.FileName is null. As far as I can deduce, the HandleNotifyMessage of VersionFileDialog just doesn't work in x64 (so _fileNames is never filled, so FileName is always null).
No files are attached