You are creating a Windows application by using the .NET Framework 3.5.
You create an installer package that deploys the following elements:
The PageLayout.exe tool
The ImageImporter.exe tool
A shared DLL named Graphics.dll
Resource files
You use the NGen Windows service and write the script package commands in the following manner.
(Line numbers are included for reference only.)
01 ngen queue pause
03 ngen executequeueditems 1
04 ngen queue continue
You need to ensure that the following installation requirements are met:
The just-in-time (JIT) compilation of the PageLayout.exe tool is completed during installation.
The Graphics.dll file is installed to the global assembly cache.
The script package commands are placed in a sequence for precompilation of the ImageImporter.exe tool
after installation.
Conflicts between the installer package and the NGen Windows service are avoided during installation.
The script package commands are arranged in the sequence of their execution.
Which set of commands should you insert at line 02?
A.
gacutil /u Graphics.dll
ngen install ImageImporter.exe /queue:1
ngen install PageLayout.exe /queue:2
ngen update /queue
B.
gacutil /u Graphics.dll
ngen install PageLayout.exe /queue:1
ngen install ImageImporter.exe /queue:2
ngen update /queue
C.
gacutil /i Graphics.dll
ngen install ImageImporter.exe /queue:1
ngen install PageLayout.exe /queue:2
ngen update /queue
D.
gacutil /i Graphics.dll
ngen install PageLayout.exe /queue:1
ngen install ImageImporter.exe /queue:2
ngen update /queue