Saves the project file.
()
| 415 | /// Saves the project file. |
| 416 | /// </summary> |
| 417 | public void Save() |
| 418 | { |
| 419 | var contents = JsonSerializer.Serialize<ProjectInfo>(this, JsonOptions); |
| 420 | File.WriteAllText(ProjectPath, contents); |
| 421 | } |
| 422 | |
| 423 | /// <summary> |
| 424 | /// Loads the project from the specified file. |
nothing calls this directly
no test coverage detected