Remove static temporary file path
This commit is contained in:
@ -50,8 +50,8 @@ namespace WGneu.Documents {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async Task Generate() {
|
public async Task Generate() {
|
||||||
var pdf = new Utils.TemporaryFile(@"C:\Users\Lorenz\Desktop", ".pdf");
|
var pdf = new Utils.TemporaryFile(".pdf");
|
||||||
using (var tmpHtml = new Utils.TemporaryFile(@"C:\Users\Lorenz\Desktop", ".html")) {
|
using (var tmpHtml = new Utils.TemporaryFile(".html")) {
|
||||||
await File.WriteAllTextAsync(tmpHtml.FilePath, await Render());
|
await File.WriteAllTextAsync(tmpHtml.FilePath, await Render());
|
||||||
await Pdf.Convert(tmpHtml.FilePath, pdf.FilePath);
|
await Pdf.Convert(tmpHtml.FilePath, pdf.FilePath);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user