Skip to content

Commit

Permalink
Move the Auto Generated text to the StringBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Dec 5, 2022
1 parent d1171d5 commit 60f1274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Xamarin.Android.Build.Tasks/Tasks/Aapt2Link.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public async override System.Threading.Tasks.Task RunTaskAsync ()
if (!string.IsNullOrEmpty (ProguardRuleOutput)) {
// combine the "proguard" temp files into one file.
var sb = new StringBuilder ();
sb.AppendLine ("#Auto Generated file. Do not Edit.");
HashSet<string> output = new HashSet<string> ();
output.Add ("#Auto Generated file. Do not Edit.");
lock (rulesFiles) {
foreach (var file in rulesFiles) {
var lines = File.ReadAllLines (file);
Expand Down

0 comments on commit 60f1274

Please sign in to comment.