mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
+ fix: DLL-Build solution, editorconfigs, grepWin-Layout
This commit is contained in:
parent
80e2d9e6ec
commit
caa414368d
@ -1,6 +1,6 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
#
|
||||
# VisualStudio: https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2017
|
||||
# VisualStudio: https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2019
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
@ -21,9 +21,6 @@ indent_style = space
|
||||
indent_size = 2
|
||||
tab_width = 2
|
||||
|
||||
[**.{lang}]
|
||||
charset = utf-8
|
||||
|
||||
[**.{ini}]
|
||||
charset = utf-8-sig
|
||||
|
||||
@ -33,31 +30,3 @@ charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[minipath/language/**.{h,rc}]
|
||||
charset = utf-8
|
||||
# space (w=4) indentation
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[scintilla/**.{h,c,cpp,hpp,cxx}]
|
||||
charset = utf-8
|
||||
# tab (w=4) indentation
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[grepWinNP3/**.{h,c,cpp,hpp,cxx}]
|
||||
charset = utf-8
|
||||
# tab (w=4) indentation
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[grepWinNP3/src/**.{rc}]
|
||||
charset = utf-16
|
||||
|
||||
[grepWinNP3/src/resource.h]
|
||||
charset = utf-16
|
||||
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -44,6 +44,7 @@ Thumbs.db
|
||||
/distrib/Notepad3*.exe
|
||||
|
||||
/packages
|
||||
/other_sln/packages
|
||||
|
||||
/Version_*.cmd
|
||||
/Versions/build.txt
|
||||
|
||||
@ -207,6 +207,9 @@ EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Notepad3", "Notepad3", "{C3735E17-6EAE-4CC5-980E-30BCEF094862}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MiniPath", "MiniPath", "{D21C1F85-6FA3-4695-82CD-DDC5690E2D66}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
minipath\.editorconfig = minipath\.editorconfig
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "language", "language", "{8FD783D5-8709-432D-A88E-6E3073AFF220}"
|
||||
EndProject
|
||||
|
||||
34
grepWinNP3/.editorconfig
Normal file
34
grepWinNP3/.editorconfig
Normal file
@ -0,0 +1,34 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
#
|
||||
# VisualStudio: https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2017
|
||||
|
||||
# top-most EditorConfig file for this project (grepWin)
|
||||
root = true
|
||||
|
||||
# Windows-style newlines with a newline ending every file
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = crlf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
# Matches multiple files with brace expansion notation
|
||||
[**.{h,c,cpp,hpp,cxx}]
|
||||
# Set default charset
|
||||
charset = utf-8
|
||||
# 2 space indentation
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[**.{lang}]
|
||||
charset = utf-8
|
||||
|
||||
[**.{ini}]
|
||||
charset = utf-8-sig
|
||||
|
||||
[**.{rc}]
|
||||
charset = utf-16
|
||||
|
||||
[src/resource.h]
|
||||
charset = utf-16
|
||||
@ -292,6 +292,7 @@
|
||||
<ClInclude Include="src\Theme.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include=".editorconfig" />
|
||||
<None Include="default.build">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
|
||||
@ -365,6 +365,7 @@
|
||||
<Filter>translations</Filter>
|
||||
</None>
|
||||
<None Include="packages.config" />
|
||||
<None Include=".editorconfig" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="src\Resources\grepWin.rc">
|
||||
|
||||
Binary file not shown.
@ -7,12 +7,12 @@
|
||||
//#pragma message(__LOC__"Run the NAnt script to get proper version info")
|
||||
|
||||
#define FILEVER 2, 1, 0, 5
|
||||
#define PRODUCTVER 2, 1, 0, 5
|
||||
#define STRFILEVER "2.1.0.5\0"
|
||||
#define STRPRODUCTVER "2.1.0.5\0"
|
||||
#define PRODUCTVER 2, 1, 0, 6
|
||||
#define STRFILEVER "2.1.0.6\0"
|
||||
#define STRPRODUCTVER "2.1.0.6\0"
|
||||
|
||||
#define GREPWIN_VERMAJOR 2
|
||||
#define GREPWIN_VERMINOR 1
|
||||
#define GREPWIN_VERMICRO 0
|
||||
#define GREPWIN_VERBUILD 5
|
||||
#define GREPWIN_VERDATE "2020-04-18"
|
||||
#define GREPWIN_VERBUILD 6
|
||||
#define GREPWIN_VERDATE "2020-04-19"
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\af-ZA"
|
||||
if exist "$(TargetDir)..\af-ZA\np3lng.dll.mui" del /f /q "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\af-ZA"
|
||||
if exist "$(TargetDir)..\af-ZA\np3lng.dll.mui" del /f /q "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\af-ZA"
|
||||
if exist "$(TargetDir)..\af-ZA\np3lng.dll.mui" del /f /q "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\af-ZA"
|
||||
if exist "$(TargetDir)..\af-ZA\np3lng.dll.mui" del /f /q "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0436 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\af-ZA\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\be-BY"
|
||||
if exist "$(TargetDir)..\be-BY\np3lng.dll.mui" del /f /q "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\be-BY"
|
||||
if exist "$(TargetDir)..\be-BY\np3lng.dll.mui" del /f /q "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\be-BY"
|
||||
if exist "$(TargetDir)..\be-BY\np3lng.dll.mui" del /f /q "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\be-BY"
|
||||
if exist "$(TargetDir)..\be-BY\np3lng.dll.mui" del /f /q "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0423 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\be-BY\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\de-DE"
|
||||
if exist "$(TargetDir)..\de-DE\np3lng.dll.mui" del /f /q "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\de-DE"
|
||||
if exist "$(TargetDir)..\de-DE\np3lng.dll.mui" del /f /q "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\de-DE"
|
||||
if exist "$(TargetDir)..\de-DE\np3lng.dll.mui" del /f /q "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\de-DE"
|
||||
if exist "$(TargetDir)..\de-DE\np3lng.dll.mui" del /f /q "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0407 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\de-DE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-GB"
|
||||
if exist "$(TargetDir)..\en-GB\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-GB"
|
||||
if exist "$(TargetDir)..\en-GB\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-GB"
|
||||
if exist "$(TargetDir)..\en-GB\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-GB"
|
||||
if exist "$(TargetDir)..\en-GB\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0809 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\en-GB\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-US"
|
||||
if exist "$(TargetDir)..\np3lng.dll" del /f /q "$(TargetDir)..\np3lng.dll"
|
||||
if exist "$(TargetDir)..\en-US\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
</PostBuildEvent>
|
||||
@ -143,7 +143,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-US"
|
||||
if exist "$(TargetDir)..\np3lng.dll" del /f /q "$(TargetDir)..\np3lng.dll"
|
||||
if exist "$(TargetDir)..\en-US\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
</PostBuildEvent>
|
||||
@ -176,7 +176,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-US"
|
||||
if exist "$(TargetDir)..\np3lng.dll" del /f /q "$(TargetDir)..\np3lng.dll"
|
||||
if exist "$(TargetDir)..\en-US\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
</PostBuildEvent>
|
||||
@ -209,7 +209,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\en-US"
|
||||
if exist "$(TargetDir)..\np3lng.dll" del /f /q "$(TargetDir)..\np3lng.dll"
|
||||
if exist "$(TargetDir)..\en-US\np3lng.dll.mui" del /f /q "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0409 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)..\np3lng.dll" "$(TargetDir)..\en-US\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
</PostBuildEvent>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\es-ES"
|
||||
if exist "$(TargetDir)..\es-ES\np3lng.dll.mui" del /f /q "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\es-ES"
|
||||
if exist "$(TargetDir)..\es-ES\np3lng.dll.mui" del /f /q "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\es-ES"
|
||||
if exist "$(TargetDir)..\es-ES\np3lng.dll.mui" del /f /q "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\es-ES"
|
||||
if exist "$(TargetDir)..\es-ES\np3lng.dll.mui" del /f /q "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0C0A -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\es-ES\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\fr-FR"
|
||||
if exist "$(TargetDir)..\fr-FR\np3lng.dll.mui" del /f /q "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\fr-FR"
|
||||
if exist "$(TargetDir)..\fr-FR\np3lng.dll.mui" del /f /q "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\fr-FR"
|
||||
if exist "$(TargetDir)..\fr-FR\np3lng.dll.mui" del /f /q "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\fr-FR"
|
||||
if exist "$(TargetDir)..\fr-FR\np3lng.dll.mui" del /f /q "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040C -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\fr-FR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\hu-HU"
|
||||
if exist "$(TargetDir)..\hu-HU\np3lng.dll.mui" del /f /q "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\hu-HU"
|
||||
if exist "$(TargetDir)..\hu-HU\np3lng.dll.mui" del /f /q "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\hu-HU"
|
||||
if exist "$(TargetDir)..\hu-HU\np3lng.dll.mui" del /f /q "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\hu-HU"
|
||||
if exist "$(TargetDir)..\hu-HU\np3lng.dll.mui" del /f /q "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x040E -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\hu-HU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\it-IT"
|
||||
if exist "$(TargetDir)..\it-IT\np3lng.dll.mui" del /f /q "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\it-IT"
|
||||
if exist "$(TargetDir)..\it-IT\np3lng.dll.mui" del /f /q "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\it-IT"
|
||||
if exist "$(TargetDir)..\it-IT\np3lng.dll.mui" del /f /q "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\it-IT"
|
||||
if exist "$(TargetDir)..\it-IT\np3lng.dll.mui" del /f /q "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0410 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\it-IT\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ja-JP"
|
||||
if exist "$(TargetDir)..\ja-JP\np3lng.dll.mui" del /f /q "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ja-JP"
|
||||
if exist "$(TargetDir)..\ja-JP\np3lng.dll.mui" del /f /q "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ja-JP"
|
||||
if exist "$(TargetDir)..\ja-JP\np3lng.dll.mui" del /f /q "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ja-JP"
|
||||
if exist "$(TargetDir)..\ja-JP\np3lng.dll.mui" del /f /q "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0411 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ja-JP\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ko-KR"
|
||||
if exist "$(TargetDir)..\ko-KR\np3lng.dll.mui" del /f /q "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ko-KR"
|
||||
if exist "$(TargetDir)..\ko-KR\np3lng.dll.mui" del /f /q "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ko-KR"
|
||||
if exist "$(TargetDir)..\ko-KR\np3lng.dll.mui" del /f /q "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ko-KR"
|
||||
if exist "$(TargetDir)..\ko-KR\np3lng.dll.mui" del /f /q "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0412 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ko-KR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\nl-NL"
|
||||
if exist "$(TargetDir)..\nl-NL\np3lng.dll.mui" del /f /q "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\nl-NL"
|
||||
if exist "$(TargetDir)..\nl-NL\np3lng.dll.mui" del /f /q "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\nl-NL"
|
||||
if exist "$(TargetDir)..\nl-NL\np3lng.dll.mui" del /f /q "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\nl-NL"
|
||||
if exist "$(TargetDir)..\nl-NL\np3lng.dll.mui" del /f /q "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0413 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\nl-NL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pl-PL"
|
||||
if exist "$(TargetDir)..\pl-PL\np3lng.dll.mui" del /f /q "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pl-PL"
|
||||
if exist "$(TargetDir)..\pl-PL\np3lng.dll.mui" del /f /q "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pl-PL"
|
||||
if exist "$(TargetDir)..\pl-PL\np3lng.dll.mui" del /f /q "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pl-PL"
|
||||
if exist "$(TargetDir)..\pl-PL\np3lng.dll.mui" del /f /q "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0415 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pl-PL\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pt-BR"
|
||||
if exist "$(TargetDir)..\pt-BR\np3lng.dll.mui" del /f /q "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pt-BR"
|
||||
if exist "$(TargetDir)..\pt-BR\np3lng.dll.mui" del /f /q "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pt-BR"
|
||||
if exist "$(TargetDir)..\pt-BR\np3lng.dll.mui" del /f /q "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\pt-BR"
|
||||
if exist "$(TargetDir)..\pt-BR\np3lng.dll.mui" del /f /q "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0416 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\pt-BR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ru-RU"
|
||||
if exist "$(TargetDir)..\ru-RU\np3lng.dll.mui" del /f /q "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ru-RU"
|
||||
if exist "$(TargetDir)..\ru-RU\np3lng.dll.mui" del /f /q "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ru-RU"
|
||||
if exist "$(TargetDir)..\ru-RU\np3lng.dll.mui" del /f /q "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\ru-RU"
|
||||
if exist "$(TargetDir)..\ru-RU\np3lng.dll.mui" del /f /q "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0419 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\ru-RU\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sk-SK"
|
||||
if exist "$(TargetDir)..\sk-SK\np3lng.dll.mui" del /f /q "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sk-SK"
|
||||
if exist "$(TargetDir)..\sk-SK\np3lng.dll.mui" del /f /q "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sk-SK"
|
||||
if exist "$(TargetDir)..\sk-SK\np3lng.dll.mui" del /f /q "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sk-SK"
|
||||
if exist "$(TargetDir)..\sk-SK\np3lng.dll.mui" del /f /q "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041B -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sk-SK\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sv-SE"
|
||||
if exist "$(TargetDir)..\sv-SE\np3lng.dll.mui" del /f /q "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sv-SE"
|
||||
if exist "$(TargetDir)..\sv-SE\np3lng.dll.mui" del /f /q "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sv-SE"
|
||||
if exist "$(TargetDir)..\sv-SE\np3lng.dll.mui" del /f /q "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\sv-SE"
|
||||
if exist "$(TargetDir)..\sv-SE\np3lng.dll.mui" del /f /q "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041D -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\sv-SE\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\tr-TR"
|
||||
if exist "$(TargetDir)..\tr-TR\np3lng.dll.mui" del /f /q "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\tr-TR"
|
||||
if exist "$(TargetDir)..\tr-TR\np3lng.dll.mui" del /f /q "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\tr-TR"
|
||||
if exist "$(TargetDir)..\tr-TR\np3lng.dll.mui" del /f /q "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\tr-TR"
|
||||
if exist "$(TargetDir)..\tr-TR\np3lng.dll.mui" del /f /q "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x041F -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\tr-TR\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\zh-CN"
|
||||
if exist "$(TargetDir)..\zh-CN\np3lng.dll.mui" del /f /q "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -144,7 +144,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\zh-CN"
|
||||
if exist "$(TargetDir)..\zh-CN\np3lng.dll.mui" del /f /q "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -178,7 +178,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\zh-CN"
|
||||
if exist "$(TargetDir)..\zh-CN\np3lng.dll.mui" del /f /q "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
@ -212,7 +212,7 @@
|
||||
<Command>mkdir "$(TargetDir)..\zh-CN"
|
||||
if exist "$(TargetDir)..\zh-CN\np3lng.dll.mui" del /f /q "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
if exist "$(TargetDir)$(TargetFileName).discard" del /f /q "$(TargetDir)$(TargetFileName).discard"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(SolutionDir)language\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -q "$(ProjectDir)..\DoReverseMuiLoc.rcconfig" -v 2 -x 0x0804 -g 0x0409 "$(TargetDir)$(TargetFileName)" "$(TargetDir)$(TargetFileName).discard" "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
"$(UCRTContentRoot)bin\$(WindowsTargetPlatformVersion)\$(PlatformShortName)\muirct.exe" -c "$(TargetDir)..\np3lng.dll" -e "$(TargetDir)..\zh-CN\np3lng.dll.mui"
|
||||
</Command>
|
||||
<Message>MUI Split</Message>
|
||||
|
||||
13
minipath/.editorconfig
Normal file
13
minipath/.editorconfig
Normal file
@ -0,0 +1,13 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
#
|
||||
# VisualStudio: https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2019
|
||||
|
||||
# top-most EditorConfig file
|
||||
#root = false
|
||||
|
||||
[language/**.{h,rc}]
|
||||
charset = utf-8
|
||||
# space (w=4) indentation
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
@ -2,15 +2,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.28606.126
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3encrypt", "np3encrypt\np3encrypt.vcxproj", "{0210F830-26C6-40FC-BFD1-6ED833B90830}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3encrypt", "..\np3encrypt\np3encrypt.vcxproj", "{0210F830-26C6-40FC-BFD1-6ED833B90830}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ced", "ced\ced.vcxproj", "{12BD16A7-3BD9-4205-99B0-75E821EA7449}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6E5B87EB-C468-4334-8384-E9A3F0F6FBDA}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.editorconfig = .editorconfig
|
||||
Build\Changes.txt = Build\Changes.txt
|
||||
EndProjectSection
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ced", "..\ced\ced.vcxproj", "{12BD16A7-3BD9-4205-99B0-75E821EA7449}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
||||
@ -2,16 +2,16 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.28606.126
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{D32CB10B-1891-471D-B780-5445BC67C1E2}"
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", "..\.nuget", "{D32CB10B-1891-471D-B780-5445BC67C1E2}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.nuget\NuGet.Config = .nuget\NuGet.Config
|
||||
.nuget\NuGet.exe = .nuget\NuGet.exe
|
||||
.nuget\NuGet.targets = .nuget\NuGet.targets
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grepWinNP3", "grepWinNP3\grepWinNP3.vcxproj", "{0049F8CF-1BEC-4E6E-B457-0187A33AD522}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grepWinNP3", "..\grepWinNP3\grepWinNP3.vcxproj", "{0049F8CF-1BEC-4E6E-B457-0187A33AD522}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notepad3", "src\Notepad3DLL.vcxproj", "{BAAD32AB-CD47-12FD-873C-0BBC204B7641}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notepad3", "..\src\Notepad3DLL.vcxproj", "{BAAD32AB-CD47-12FD-873C-0BBC204B7641}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{4B141102-3379-4F20-A9B0-F7418EFF3DAA} = {4B141102-3379-4F20-A9B0-F7418EFF3DAA}
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
@ -35,7 +35,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notepad3", "src\Notepad3DLL
|
||||
{ADCA49F0-D91B-4AB9-913A-5840DCA8C79E} = {ADCA49F0-D91B-4AB9-913A-5840DCA8C79E}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minipath", "minipath\minipathDLL.vcxproj", "{781B17E7-427F-488F-A8E9-360BA38A10F3}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minipath", "..\minipath\minipathDLL.vcxproj", "{781B17E7-427F-488F-A8E9-360BA38A10F3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{5996B101-46FE-48E4-8531-376140086DA4} = {5996B101-46FE-48E4-8531-376140086DA4}
|
||||
{4D474510-CD21-4EF7-974D-706775B1A83C} = {4D474510-CD21-4EF7-974D-706775B1A83C}
|
||||
@ -58,108 +58,108 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minipath", "minipath\minipa
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Scintilla", "scintilla\ScintillaDLL.vcxproj", "{5877B917-512B-49F5-B514-1B4159E7A9CA}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Scintilla", "..\scintilla\ScintillaDLL.vcxproj", "{5877B917-512B-49F5-B514-1B4159E7A9CA}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_de_de", "language\np3_de_de\np3_de_de.vcxproj", "{146D0122-33C6-4C1B-9E7A-178DEC80842E}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_de_de", "..\language\np3_de_de\np3_de_de.vcxproj", "{146D0122-33C6-4C1B-9E7A-178DEC80842E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_fr_fr", "language\np3_fr_fr\np3_fr_fr.vcxproj", "{EC255B64-2C2F-4CB6-9D40-4542893FE5E6}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_fr_fr", "..\language\np3_fr_fr\np3_fr_fr.vcxproj", "{EC255B64-2C2F-4CB6-9D40-4542893FE5E6}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_es_es", "language\np3_es_es\np3_es_es.vcxproj", "{3B8C289D-FF47-4237-AD7B-0702230F41A3}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_es_es", "..\language\np3_es_es\np3_es_es.vcxproj", "{3B8C289D-FF47-4237-AD7B-0702230F41A3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_en_us", "language\np3_en_us\np3_en_us.vcxproj", "{9DC82B0D-2484-4925-92AD-1237C64CCB78}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_en_us", "..\language\np3_en_us\np3_en_us.vcxproj", "{9DC82B0D-2484-4925-92AD-1237C64CCB78}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_af_za", "language\np3_af_za\np3_af_za.vcxproj", "{C8E80B4C-C0FD-4119-A05A-AB372A61007F}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_af_za", "..\language\np3_af_za\np3_af_za.vcxproj", "{C8E80B4C-C0FD-4119-A05A-AB372A61007F}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_nl_nl", "language\np3_nl_nl\np3_nl_nl.vcxproj", "{9B31015C-CB08-4B4B-A957-313A93F862F5}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_nl_nl", "..\language\np3_nl_nl\np3_nl_nl.vcxproj", "{9B31015C-CB08-4B4B-A957-313A93F862F5}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_en_gb", "language\np3_en_gb\np3_en_gb.vcxproj", "{ADCA49F0-D91B-4AB9-913A-5840DCA8C79E}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_en_gb", "..\language\np3_en_gb\np3_en_gb.vcxproj", "{ADCA49F0-D91B-4AB9-913A-5840DCA8C79E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_en_us", "minipath\language\mp_en_us\mp_en_us.vcxproj", "{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_en_us", "..\minipath\language\mp_en_us\mp_en_us.vcxproj", "{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_en_gb", "minipath\language\mp_en_gb\mp_en_gb.vcxproj", "{BF3DEE96-735B-4A5E-95DD-3D3661B62EEF}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_en_gb", "..\minipath\language\mp_en_gb\mp_en_gb.vcxproj", "{BF3DEE96-735B-4A5E-95DD-3D3661B62EEF}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_de_de", "minipath\language\mp_de_de\mp_de_de.vcxproj", "{5996B101-46FE-48E4-8531-376140086DA4}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_de_de", "..\minipath\language\mp_de_de\mp_de_de.vcxproj", "{5996B101-46FE-48E4-8531-376140086DA4}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_af_za", "minipath\language\mp_af_za\mp_af_za.vcxproj", "{53DB2F85-DEEA-4FC0-A89F-1DF5B534A250}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_af_za", "..\minipath\language\mp_af_za\mp_af_za.vcxproj", "{53DB2F85-DEEA-4FC0-A89F-1DF5B534A250}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_fr_fr", "minipath\language\mp_fr_fr\mp_fr_fr.vcxproj", "{491C39D2-2E1D-4DF7-B6BF-9641B7757FC4}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_fr_fr", "..\minipath\language\mp_fr_fr\mp_fr_fr.vcxproj", "{491C39D2-2E1D-4DF7-B6BF-9641B7757FC4}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_nl_nl", "minipath\language\mp_nl_nl\mp_nl_nl.vcxproj", "{E0DEC59F-D155-46D8-8866-9F305CC75A2B}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_nl_nl", "..\minipath\language\mp_nl_nl\mp_nl_nl.vcxproj", "{E0DEC59F-D155-46D8-8866-9F305CC75A2B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_es_es", "minipath\language\mp_es_es\mp_es_es.vcxproj", "{954B9D26-1735-4674-8279-FF2C44E4258B}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_es_es", "..\minipath\language\mp_es_es\mp_es_es.vcxproj", "{954B9D26-1735-4674-8279-FF2C44E4258B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_zh_cn", "language\np3_zh_cn\np3_zh_cn.vcxproj", "{7E16647B-CA40-43E8-8ABB-E4C430C186CA}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_zh_cn", "..\language\np3_zh_cn\np3_zh_cn.vcxproj", "{7E16647B-CA40-43E8-8ABB-E4C430C186CA}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_zh_cn", "minipath\language\mp_zh_cn\mp_zh_cn.vcxproj", "{73B1A06D-F536-4F39-80AA-798A1E8023DE}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_zh_cn", "..\minipath\language\mp_zh_cn\mp_zh_cn.vcxproj", "{73B1A06D-F536-4F39-80AA-798A1E8023DE}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_ja_jp", "language\np3_ja_jp\np3_ja_jp.vcxproj", "{76A53B4D-3011-4AAB-8DE9-C0D080FA95CF}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_ja_jp", "..\language\np3_ja_jp\np3_ja_jp.vcxproj", "{76A53B4D-3011-4AAB-8DE9-C0D080FA95CF}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_ja_jp", "minipath\language\mp_ja_jp\mp_ja_jp.vcxproj", "{4D474510-CD21-4EF7-974D-706775B1A83C}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_ja_jp", "..\minipath\language\mp_ja_jp\mp_ja_jp.vcxproj", "{4D474510-CD21-4EF7-974D-706775B1A83C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_be_by", "language\np3_be_by\np3_be_by.vcxproj", "{4484EA6C-AA9D-4DE4-BAA1-535FFFEFE49E}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_be_by", "..\language\np3_be_by\np3_be_by.vcxproj", "{4484EA6C-AA9D-4DE4-BAA1-535FFFEFE49E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_ru_ru", "language\np3_ru_ru\np3_ru_ru.vcxproj", "{AB02DFC9-B0C0-488C-9BF9-E90B0402F30E}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_ru_ru", "..\language\np3_ru_ru\np3_ru_ru.vcxproj", "{AB02DFC9-B0C0-488C-9BF9-E90B0402F30E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_be_by", "minipath\language\mp_be_by\mp_be_by.vcxproj", "{5F11951A-9DB3-454B-A90C-693387D4C85A}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_be_by", "..\minipath\language\mp_be_by\mp_be_by.vcxproj", "{5F11951A-9DB3-454B-A90C-693387D4C85A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_ru_ru", "minipath\language\mp_ru_ru\mp_ru_ru.vcxproj", "{BA9900A1-6FB6-4A6E-A817-830CB6F3D009}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_ru_ru", "..\minipath\language\mp_ru_ru\mp_ru_ru.vcxproj", "{BA9900A1-6FB6-4A6E-A817-830CB6F3D009}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
@ -171,32 +171,32 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||
packages.config = packages.config
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_ko_kr", "language\np3_ko_kr\np3_ko_kr.vcxproj", "{0FA07345-601B-474E-99C0-7E61E70DA72E}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_ko_kr", "..\language\np3_ko_kr\np3_ko_kr.vcxproj", "{0FA07345-601B-474E-99C0-7E61E70DA72E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_ko_kr", "minipath\language\mp_ko_kr\mp_ko_kr.vcxproj", "{18CD506D-5596-4B58-B868-57FAAC657C6B}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_ko_kr", "..\minipath\language\mp_ko_kr\mp_ko_kr.vcxproj", "{18CD506D-5596-4B58-B868-57FAAC657C6B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_hu_hu", "language\np3_hu_hu\np3_hu_hu.vcxproj", "{82BD93B4-0306-4DDC-87F6-84B906DBAA77}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_hu_hu", "..\language\np3_hu_hu\np3_hu_hu.vcxproj", "{82BD93B4-0306-4DDC-87F6-84B906DBAA77}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_hu_hu", "minipath\language\mp_hu_hu\mp_hu_hu.vcxproj", "{C13B39D8-BE5B-4FD0-8BE2-D2A2DD1FD837}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_hu_hu", "..\minipath\language\mp_hu_hu\mp_hu_hu.vcxproj", "{C13B39D8-BE5B-4FD0-8BE2-D2A2DD1FD837}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_pt_br", "language\np3_pt_br\np3_pt_br.vcxproj", "{4B141102-3379-4F20-A9B0-F7418EFF3DAA}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_pt_br", "..\language\np3_pt_br\np3_pt_br.vcxproj", "{4B141102-3379-4F20-A9B0-F7418EFF3DAA}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_pt_br", "minipath\language\mp_pt_br\mp_pt_br.vcxproj", "{83E5EEBE-9764-4C5B-9FDC-EB84A369C501}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_pt_br", "..\minipath\language\mp_pt_br\mp_pt_br.vcxproj", "{83E5EEBE-9764-4C5B-9FDC-EB84A369C501}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
@ -207,12 +207,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Scripts", "Scripts", "{490D
|
||||
Version.ps1 = Version.ps1
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_it_it", "language\np3_it_it\np3_it_it.vcxproj", "{2EB07C98-0F3F-4CB6-B448-099770AF1989}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_it_it", "..\language\np3_it_it\np3_it_it.vcxproj", "{2EB07C98-0F3F-4CB6-B448-099770AF1989}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_it_it", "minipath\language\mp_it_it\mp_it_it.vcxproj", "{DA372A4B-7AE0-4C50-97B7-49D5FF953325}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_it_it", "..\minipath\language\mp_it_it\mp_it_it.vcxproj", "{DA372A4B-7AE0-4C50-97B7-49D5FF953325}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
@ -225,47 +225,47 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "language", "language", "{8F
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "language", "language", "{8C28F8E6-5B4E-4233-B5C7-5A903596AEB2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_pl_pl", "language\np3_pl_pl\np3_pl_pl.vcxproj", "{E99EA1C1-B4DE-454B-9500-C98F817C0D6A}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_pl_pl", "..\language\np3_pl_pl\np3_pl_pl.vcxproj", "{E99EA1C1-B4DE-454B-9500-C98F817C0D6A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_pl_pl", "minipath\language\mp_pl_pl\mp_pl_pl.vcxproj", "{7924E6DE-69F4-40C2-951A-44AD3A54152D}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_pl_pl", "..\minipath\language\mp_pl_pl\mp_pl_pl.vcxproj", "{7924E6DE-69F4-40C2-951A-44AD3A54152D}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_tr_tr", "language\np3_tr_tr\np3_tr_tr.vcxproj", "{15428F5A-16F1-4DA5-9F12-0411183E3DC0}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_tr_tr", "..\language\np3_tr_tr\np3_tr_tr.vcxproj", "{15428F5A-16F1-4DA5-9F12-0411183E3DC0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_tr_tr", "minipath\language\mp_tr_tr\mp_tr_tr.vcxproj", "{6503214A-CE25-45B5-84BB-61EEFB35D1A9}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_tr_tr", "..\minipath\language\mp_tr_tr\mp_tr_tr.vcxproj", "{6503214A-CE25-45B5-84BB-61EEFB35D1A9}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_sv_se", "minipath\language\mp_sv_se\mp_sv_se.vcxproj", "{3E19AA6A-0935-4320-962A-C1E9378B387C}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_sv_se", "..\minipath\language\mp_sv_se\mp_sv_se.vcxproj", "{3E19AA6A-0935-4320-962A-C1E9378B387C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_sv_se", "language\np3_sv_se\np3_sv_se.vcxproj", "{07C218D7-D510-4D63-95E8-F661F62ED418}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_sv_se", "..\language\np3_sv_se\np3_sv_se.vcxproj", "{07C218D7-D510-4D63-95E8-F661F62ED418}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_sk_sk", "minipath\language\mp_sk_sk\mp_sk_sk.vcxproj", "{8346318F-632A-4514-AAD7-A93593759823}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mp_sk_sk", "..\minipath\language\mp_sk_sk\mp_sk_sk.vcxproj", "{8346318F-632A-4514-AAD7-A93593759823}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{29AB36E1-284E-4E0B-9DF4-F4F84760BD9B} = {29AB36E1-284E-4E0B-9DF4-F4F84760BD9B}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_sk_sk", "language\np3_sk_sk\np3_sk_sk.vcxproj", "{8BB7B168-FC6D-463A-BBE4-FA595BDD5753}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "np3_sk_sk", "..\language\np3_sk_sk\np3_sk_sk.vcxproj", "{8BB7B168-FC6D-463A-BBE4-FA595BDD5753}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{9DC82B0D-2484-4925-92AD-1237C64CCB78} = {9DC82B0D-2484-4925-92AD-1237C64CCB78}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "grepWinNP3", "grepWinNP3", "{3F7359FE-EC69-42E8-BB21-7E59D622D57D}"
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "grepWinNP3", "..\grepWinNP3", "{3F7359FE-EC69-42E8-BB21-7E59D622D57D}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
||||
32
scintilla/.editorconfig
Normal file
32
scintilla/.editorconfig
Normal file
@ -0,0 +1,32 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
#
|
||||
# VisualStudio: https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2019
|
||||
|
||||
# top-most EditorConfig file for this project (Scintilla)
|
||||
root = true
|
||||
|
||||
# Windows-style newlines with a newline ending every file
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = crlf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
# Matches multiple files with brace expansion notation
|
||||
[**.{h,c,cpp,hpp,cxx}]
|
||||
# Set default charset
|
||||
charset = utf-8
|
||||
# tab (w=4) indentation
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[**.{rc}]
|
||||
charset = utf-8
|
||||
# space (w=4) indentation
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
|
||||
[**.{ini}]
|
||||
charset = utf-8-sig
|
||||
@ -395,7 +395,6 @@
|
||||
<ClInclude Include="src\SparseVector.h" />
|
||||
<ClInclude Include="src\SplitVector.h" />
|
||||
<ClInclude Include="src\Style.h" />
|
||||
<ClInclude Include="src\UnicodeFromUTF8.h" />
|
||||
<ClInclude Include="src\UniConversion.h" />
|
||||
<ClInclude Include="src\UniqueString.h" />
|
||||
<ClInclude Include="src\ViewStyle.h" />
|
||||
|
||||
@ -494,9 +494,6 @@
|
||||
<ClInclude Include="src\Style.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="src\UnicodeFromUTF8.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="src\UniConversion.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
|
||||
@ -6,7 +6,7 @@ KEYWORDLIST KeyWords_PROPS = EMPTY_KEYWORDLIST;
|
||||
|
||||
|
||||
EDITLEXER lexPROPS = {
|
||||
SCLEX_PROPERTIES, IDS_LEX_CONF, L"Configuration Files", L"ini; inf; properties; oem; sif; url; sed; theme; clw", L"",
|
||||
SCLEX_PROPERTIES, IDS_LEX_CONF, L"Configuration Files", L"ini; inf; properties; oem; sif; url; sed; theme; clw; editorconfig", L"",
|
||||
&KeyWords_PROPS, {
|
||||
{ {STYLE_DEFAULT}, IDS_LEX_STR_63126, L"Default", L"", L"" },
|
||||
//{ {SCE_PROPS_DEFAULT}, IDS_LEX_STR_63126, L"Default", L"", L"" },
|
||||
|
||||
Loading…
Reference in New Issue
Block a user