We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08351ec commit e4ab3f9Copy full SHA for e4ab3f9
1 file changed
Obsidian.MSBuild/Pack.cs
@@ -90,6 +90,14 @@ public override bool Execute()
90
writer.Write(this.PluginAuthors);
91
writer.Write(this.PluginDescription ?? "No description provided");
92
93
+ writer.Write(dependencies.Length);
94
+
95
+ foreach(var dependency in dependencies)
96
+ {
97
+ writer.Write(dependency.Id);
98
+ writer.Write(dependency.Version);
99
+ }
100
101
var hashAndSignatureStartPos = fs.Position;
102
writer.Write(new byte[headerSize]);
103
0 commit comments