I want change value in "MyProject.Properties.Settings.Default.Property" but give to me error and this error;
Severity Code Description Project File Line Suppression State Error CS0200 Property or indexer 'Settings.Version' cannot be assigned to -- it is read only
How I can solve this problem? Or Which I can try different method?
21.03.2017 EDIT - I SOLVED PROBLEM WITH THIS METHOD
Properties.Settings.Default["Version"] = File.GetLastWriteTime(mainDllPath).ToString("ddMMyyyyhhmmss");
Properties.Settings.Default.Save();