Skip to content

Commit 4e42bdf

Browse files
committed
Fix ARM64 output artifact path
1 parent baf5d1e commit 4e42bdf

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

UWPDumper/UWPDumper.vcxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@
109109
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
110110
<OutDir>$(SolutionDir)$(PlatformTarget)\</OutDir>
111111
</PropertyGroup>
112+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
113+
<OutDir>$(SolutionDir)$(PlatformTarget)\</OutDir>
114+
</PropertyGroup>
115+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
116+
<OutDir>$(SolutionDir)$(PlatformTarget)\</OutDir>
117+
</PropertyGroup>
112118
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
113119
<ClCompile>
114120
<WarningLevel>Level3</WarningLevel>

UWPInjector/UWPInjector.vcxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@
109109
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
110110
<OutDir>$(SolutionDir)$(PlatformTarget)\</OutDir>
111111
</PropertyGroup>
112+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
113+
<OutDir>$(SolutionDir)$(PlatformTarget)\</OutDir>
114+
</PropertyGroup>
115+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
116+
<OutDir>$(SolutionDir)$(PlatformTarget)\</OutDir>
117+
</PropertyGroup>
112118
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
113119
<ClCompile>
114120
<WarningLevel>Level3</WarningLevel>

0 commit comments

Comments
 (0)