Skip to content

Commit

Permalink
Attempting fix of generator since we no longer have net48
Browse files Browse the repository at this point in the history
  • Loading branch information
Keboo committed Jan 10, 2025
1 parent a8bc5db commit f31d65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/CSharpReference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static async Task UpdateCSharpReference(string outputCsharpReference)

ZipFile.ExtractToDirectory(velopackStream, extractedVelopack);

var velopackDll = Path.Combine(extractedVelopack, "lib", "net48", "Velopack.dll");
var velopackDll = Path.Combine(extractedVelopack, "lib", "netstandard2.0", "Velopack.dll");

var p = Process.Start("mddocs", ["apireference", "-a", velopackDll, "-o", outputCsharpReference]);
await p.WaitForExitAsync();
Expand Down

0 comments on commit f31d65d

Please sign in to comment.