Copy to output for version 1.0

This commit is contained in:
Booklordofthedings 2024-12-06 18:14:15 +01:00
parent 9f9cff55fa
commit 31a36815f8
3 changed files with 33 additions and 3 deletions

View file

@ -1,7 +1,5 @@
namespace Example_Website;
using System;
using Aven;
class Program
@ -9,7 +7,8 @@ class Program
public static void Main()
{
Aven aven = scope .();
aven.Register(.Owning(new Example_Website.Index()));
aven.CopyToOutput("../favicon.ico", "favicon.ico");
aven.Register(.Owning(new Index()));
aven.Build();
}
}