Skip to content

Commit 18565fe

Browse files
committed
WiX: Ignore CustomActions build cache in Git
Due to MSBuild restrictions, the `CustomActions` build is out-of-tree. We change the directory to `.output` so it won't go in the Git working tree.
1 parent 1527dc3 commit 18565fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

platforms/Windows/CustomActions/CustomActions.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<PlatformToolset Condition="'$(PlatformToolset)' == ''">$(DefaultPlatformToolset)</PlatformToolset>
4444
<PlatformToolset>$(PlatformToolset)</PlatformToolset>
4545

46-
<IntDir>build\$(Configuration)\$(PlatformShortName)\obj\</IntDir>
47-
<OutDir>build\$(Configuration)\$(PlatformShortName)\bin\</OutDir>
46+
<IntDir>.output\$(Configuration)\$(PlatformShortName)\obj\</IntDir>
47+
<OutDir>.output\$(Configuration)\$(PlatformShortName)\bin\</OutDir>
4848
</PropertyGroup>
4949

5050
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">

0 commit comments

Comments
 (0)