Skip to content

Commit

Permalink
Use bin instead of bin/debug/netcoreapp2.1 for build folder
Browse files Browse the repository at this point in the history
  • Loading branch information
versx committed Dec 16, 2020
1 parent ed801bb commit dc2f683
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Data/DatabaseMigrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class DatabaseMigrator
/// </summary>
public string MigrationsFolder => Path.Combine
(
Path.Combine(Directory.GetCurrentDirectory(), "../../.."),
Path.Combine(Directory.GetCurrentDirectory(), "../"),
Strings.MigrationsFolder
);

Expand Down
7 changes: 6 additions & 1 deletion src/WhMgr.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@
<DefineConstants>Linux</DefineConstants>
</PropertyGroup>

<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>../bin/debug</OutputPath>
<OutputPath>../bin</OutputPath>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit dc2f683

Please sign in to comment.