Skip to content

Commit

Permalink
Fixed nuspec serialization which generated wrong cache so far
Browse files Browse the repository at this point in the history
  • Loading branch information
igor84 committed Aug 3, 2022
1 parent bb46af6 commit cd463c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Assets/NuGet/Editor/NuspecFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,9 @@ public void Save(string filePath)
var dependencyElement = new XElement("dependency");
dependencyElement.Add(new XAttribute("id", dependency.Id));
dependencyElement.Add(new XAttribute("version", dependency.Version));
dependenciesElement.Add(dependencyElement);
group.Add(dependencyElement);
}
dependenciesElement.Add(group);
}
metadata.Add(dependenciesElement);
}
Expand Down

0 comments on commit cd463c8

Please sign in to comment.