READ Free Dumps For Microsoft- 70-486
Question ID 14696 | You are developing an ASP.NET MVC application that supports multiple cultures and
multiple languages. The application will be sold to international customers.
The ASP.NET MVC application must store localized content in satellite assemblies for
multiple languages.
You need to generate the satellite assemblies during an automated build.
Which tool should you use?
|
Option A | Gacutil.exe
|
Option B | Al.exe
|
Option C | Ildasm.exe
|
Option D | nasm.exe
|
Correct Answer | B |
Explanation Explanation: Use the Assembly Linker (Al.exe) to compile .resources files into satellite assemblies. Al.exe creates an assembly from the .resources files that you specify. By definition, satellite assemblies can only contain resources. They cannot contain any executable code. The following Al.exe command creates a satellite assembly for the application MyApp from the file strings.de.resources. al /t:lib /embed:strings.de.resources /culture:de /out:MyApp.resources.dll
Question ID 14697 | You are developing an ASP.NET MVC 4 application. You are using IntelliTrace to debug
the application. You configure IntelliTrace as shown in the screenshot below.
To answer, make the appropriate selections in the answer area.
|
Option A |
|
Correct Answer | A |
Explanation