You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- $(MSBuildProgramFiles32) points to the 32 bit program files dir.
55
36
On 32 bit windows usually C:\Program Files\
56
37
On 64 bit windows usually C:\Program Files (x86)\
57
38
$(ProgramW6432) points to the 64bit Program Files (on 32 bit windows it is blank) -->
58
39
<MakeDirDirectories="$(MSBuildProgramFiles32)\Notepad++\plugins\$(TargetName)\"Condition="Exists('$(MSBuildProgramFiles32)\Notepad++\plugins\') AND !Exists('$(MSBuildProgramFiles32)\Notepad++\plugins\$(TargetName)\') AND '$(Platform)'=='x86'" />
Condition="Exists('$(MSBuildProgramFiles32)\Notepad++\plugins\$(TargetName)\') AND '$(Platform)'=='x86'"
63
-
ContinueOnError="false" />
40
+
<CopySourceFiles="@(ReleaseFiles)"DestinationFolder="$(MSBuildProgramFiles32)\Notepad++\plugins\$(TargetName)\"Condition="Exists('$(MSBuildProgramFiles32)\Notepad++\plugins\$(TargetName)\') AND '$(Platform)'=='x86'"ContinueOnError="false" />
64
41
<MakeDirDirectories="$(ProgramW6432)\Notepad++\plugins\$(TargetName)\"Condition="Exists('$(ProgramW6432)\Notepad++\plugins\') AND !Exists('$(ProgramW6432)\Notepad++\plugins\$(TargetName)\') AND '$(Platform)'=='x64'" />
Condition="Exists('$(ProgramW6432)\Notepad++\plugins\$(TargetName)\') AND '$(Platform)'=='x64'"
69
-
ContinueOnError="false" />
42
+
<CopySourceFiles="@(ReleaseFiles)"DestinationFolder="$(ProgramW6432)\Notepad++\plugins\$(TargetName)\"Condition="Exists('$(ProgramW6432)\Notepad++\plugins\$(TargetName)\') AND '$(Platform)'=='x64'"ContinueOnError="false" />
0 commit comments