Put output binaries in solution folder

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2020-07-28 09:40:01 +02:00
parent 33ac1031d9
commit 6023e8be89
2 changed files with 7 additions and 3 deletions

4
.gitignore vendored
View file

@ -1,3 +1,7 @@
# /
/ARM64
/Win32
/x64
# /LockIfOutOfLogonHours/
/LockIfOutOfLogonHours/*.user

View file

@ -109,15 +109,15 @@
<IntDir>$(Configuration).$(Platform)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(Configuration).$(Platform)\</OutDir>
<OutDir>$(SolutionDir)$(Platform)\</OutDir>
<IntDir>$(Configuration).$(Platform)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutDir>$(Configuration).$(Platform)\</OutDir>
<OutDir>$(SolutionDir)$(Platform)\</OutDir>
<IntDir>$(Configuration).$(Platform)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
<OutDir>$(Configuration).$(Platform)\</OutDir>
<OutDir>$(SolutionDir)$(Platform)\</OutDir>
<IntDir>$(Configuration).$(Platform)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">