Skip to content

Commit

Permalink
! Always save project properties if they changes (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Dec 5, 2024
1 parent 4333d6f commit 9bb1747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Codist/AutoBuildVersion/BuildConfigSetting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bool RewriteSdkProjectFile(Project project, ref RewriteFlags f) {
}
f = f.SetFlags(rf, false);
var r = rf != RewriteFlags.None;
if (r && project.Saved == false) {
if (r) {
project.Save();
}
return r;
Expand Down

0 comments on commit 9bb1747

Please sign in to comment.