pascalabcnet/ReleaseGenerators/RussianHelpFramework.nsh

18 lines
619 B
Plaintext
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
Section "Framework Class Library Help" FrameworkHelp
SectionIn 1
IfFileExists "$WINDIR\Microsoft.NET\Framework64" 0 +5
2018-03-29 22:52:13 +03:00
IfFileExists "$WINDIR\Microsoft.NET\Framework64\v4.0.30319\ru\System.Net.Http.xml" 0 +2
2015-05-14 22:35:07 +03:00
Goto dotnet40helpinstalled
SetOutPath "$WINDIR\Microsoft.NET\Framework64\v4.0.30319\ru"
Goto copyfiles
2018-03-29 22:52:13 +03:00
IfFileExists "$WINDIR\Microsoft.NET\Framework\v4.0.30319\ru\System.Net.Http.xml" 0 +2
2015-05-14 22:35:07 +03:00
Goto dotnet40helpinstalled
SetOutPath "$WINDIR\Microsoft.NET\Framework\v4.0.30319\ru"
copyfiles:
2018-03-29 22:52:13 +03:00
File DotNet471\Tooltips\*.xml
2015-05-14 22:35:07 +03:00
Goto exithelp
dotnet40helpinstalled:
exithelp:
SectionEnd