diff --git a/Chrono/Build/Program.cs b/Chrono/Build/Program.cs
index 7238e64..71daaba 100644
--- a/Chrono/Build/Program.cs
+++ b/Chrono/Build/Program.cs
@@ -5,7 +5,7 @@ using Chrono.Model;
var repoRoot = Path.GetFullPath(Path.Combine(AppContext.BaseDirectory, "..", "..", "..", "..", ".."));
var docsDir = Path.Combine(repoRoot, "chrono.docs");
var webWwwRoot = Path.Combine(repoRoot, "Chrono", "Web", "wwwroot");
-var generatedFile = Path.Combine(repoRoot, "Chrono", "Web", "Generated", "Cards.g.cs");
+var generatedFile = Path.Combine(repoRoot, "Chrono", "Shared", "Generated", "Cards.g.cs");
Console.WriteLine($"Repo root: {repoRoot}");
Console.WriteLine($"Docs dir: {docsDir}");
@@ -163,7 +163,7 @@ foreach (var file in deckFiles)
Console.WriteLine($"Parsed {decks.Count} deck files");
// Generate Decks.g.cs
-var deckGeneratedFile = Path.Combine(repoRoot, "Chrono", "Web", "Generated", "Decks.g.cs");
+var deckGeneratedFile = Path.Combine(repoRoot, "Chrono", "Shared", "Generated", "Decks.g.cs");
Directory.CreateDirectory(Path.GetDirectoryName(deckGeneratedFile)!);
using var deckWriter = new StreamWriter(deckGeneratedFile, false, Encoding.UTF8);
deckWriter.WriteLine("//
Sorry, the content you are looking for does not exist.
diff --git a/Chrono/Shared/Shared.csproj b/Chrono/Shared/Shared.csproj new file mode 100644 index 0000000..e3d27d4 --- /dev/null +++ b/Chrono/Shared/Shared.csproj @@ -0,0 +1,35 @@ +Sorry, the content you are looking for does not exist.
\ No newline at end of file diff --git a/Chrono/Web/Web.csproj b/Chrono/Web/Web.csproj index 14d424b..c217d48 100644 --- a/Chrono/Web/Web.csproj +++ b/Chrono/Web/Web.csproj @@ -16,22 +16,6 @@