From 49e36e17f5ae92e331b65ac13e54a8fbed55d6fe Mon Sep 17 00:00:00 2001 From: Ben C Date: Sun, 22 May 2022 21:52:05 -0400 Subject: [PATCH] Change path in schema exporter --- SchemaExporter/SchemaExporter.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/SchemaExporter/SchemaExporter.cs b/SchemaExporter/SchemaExporter.cs index 76a45752..22028ecd 100644 --- a/SchemaExporter/SchemaExporter.cs +++ b/SchemaExporter/SchemaExporter.cs @@ -1,9 +1,13 @@ -using NewHorizons.External.Configs; -using NJsonSchema; -using NJsonSchema.Generation; +#region + using System; using System.IO; using System.Linq; +using NewHorizons.External.Configs; +using NJsonSchema; +using NJsonSchema.Generation; + +#endregion namespace SchemaExporter; @@ -11,7 +15,7 @@ public static class SchemaExporter { public static void Main(string[] args) { - const string folderName = "Schemas"; + const string folderName = "NewHorizons/Schemas"; Directory.CreateDirectory(folderName); Console.WriteLine("Schema Generator: We're winning!");