Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Fixes an error in the way the working directory was determined.
Browse files Browse the repository at this point in the history
  • Loading branch information
mxashlynn committed Aug 10, 2020
1 parent f7ce84d commit ef58b95
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions ParquetClassLibrary/All.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions ParquetClassLibrary/ParquetClassLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyName>Parquet</AssemblyName>

<Product>Parquet</Product>
<Version>0.2.1.0</Version>
<Version>0.2.2.0</Version>
<Company>Magical Girlfriends</Company>
<Authors>Paige Ashlynn and contibutors</Authors>
<Copyright>2018-2020 Paige Ashlynn</Copyright>
Expand All @@ -30,8 +30,8 @@

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AssemblyVersion>0.2.1.0</AssemblyVersion>
<FileVersion>0.2.1.0</FileVersion>
<AssemblyVersion>0.2.2.0</AssemblyVersion>
<FileVersion>0.2.2.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
2 changes: 1 addition & 1 deletion ParquetRoller/ParquetRoller.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyName>Roller</AssemblyName>

<Product>Roller</Product>
<Version>0.2.1.0</Version>
<Version>0.2.2.0</Version>
<Company>Magical Girlfriends</Company>
<Authors>Paige Ashlynn and contibutors</Authors>
<Copyright>2018-2020 Paige Ashlynn</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion ParquetRunner/ParquetRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyName>ParquetRunner</AssemblyName>

<Product>Runner</Product>
<Version>0.2.1.0</Version>
<Version>0.2.2.0</Version>
<Company>Magical Girlfriends</Company>
<Authors>Paige Ashlynn and contibutors</Authors>
<Copyright>2018-2020 Paige Ashlynn</Copyright>
Expand Down

0 comments on commit ef58b95

Please sign in to comment.