From ef58b950921ea28c032405ef65f766443c0d1720 Mon Sep 17 00:00:00 2001 From: Paige Ashlynn Date: Sun, 9 Aug 2020 18:19:44 -0700 Subject: [PATCH] Fixes an error in the way the working directory was determined. --- ParquetClassLibrary/All.cs | 6 +++--- ParquetClassLibrary/ParquetClassLibrary.csproj | 6 +++--- ParquetRoller/ParquetRoller.csproj | 2 +- ParquetRunner/ParquetRunner.csproj | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ParquetClassLibrary/All.cs b/ParquetClassLibrary/All.cs index 7d549495..5a5be683 100644 --- a/ParquetClassLibrary/All.cs +++ b/ParquetClassLibrary/All.cs @@ -338,11 +338,11 @@ static All() #endregion #region Initialize Serialization Values & Lookup Tables - ProjectDirectory = + ProjectDirectory = #if DEBUG - $"{Directory.GetCurrentDirectory()}/../../../../ExampleData"; + Path.GetFullPath($"{Directory.GetCurrentDirectory()}/../../../../ExampleData"); #else - Directory.GetCurrentDirectory(); + Path.GetFullPath(Directory.GetCurrentDirectory()); #endif IdentifierOptions = new TypeConverterOptions diff --git a/ParquetClassLibrary/ParquetClassLibrary.csproj b/ParquetClassLibrary/ParquetClassLibrary.csproj index db947e0b..c10b0196 100644 --- a/ParquetClassLibrary/ParquetClassLibrary.csproj +++ b/ParquetClassLibrary/ParquetClassLibrary.csproj @@ -4,7 +4,7 @@ Parquet Parquet - 0.2.1.0 + 0.2.2.0 Magical Girlfriends Paige Ashlynn and contibutors 2018-2020 Paige Ashlynn @@ -30,8 +30,8 @@ true true - 0.2.1.0 - 0.2.1.0 + 0.2.2.0 + 0.2.2.0 diff --git a/ParquetRoller/ParquetRoller.csproj b/ParquetRoller/ParquetRoller.csproj index 9f7bfd8e..e2915138 100644 --- a/ParquetRoller/ParquetRoller.csproj +++ b/ParquetRoller/ParquetRoller.csproj @@ -4,7 +4,7 @@ Roller Roller - 0.2.1.0 + 0.2.2.0 Magical Girlfriends Paige Ashlynn and contibutors 2018-2020 Paige Ashlynn diff --git a/ParquetRunner/ParquetRunner.csproj b/ParquetRunner/ParquetRunner.csproj index dbcd2b79..1a54893c 100644 --- a/ParquetRunner/ParquetRunner.csproj +++ b/ParquetRunner/ParquetRunner.csproj @@ -4,7 +4,7 @@ ParquetRunner Runner - 0.2.1.0 + 0.2.2.0 Magical Girlfriends Paige Ashlynn and contibutors 2018-2020 Paige Ashlynn