InterviewSolution
| 1. |
Which File Format Is Used In Msbuild And What Are The Benefits Of The Same? |
|
Answer» The MS Build is actually based or makes use of a project file that is actually XML-based. The biggest BENEFIT of the same is it’s highly extensible, as well as straightforward. DEVELOPERS can easily describe the items so that building process can be made easily. The information regarding the building process RELATED to different configuration, as well as OPERATING system can also be grabbed from the same. To perform the build regularly, the developers have the option to simply build rules and keep them in a separate file. The MS Build is actually based or makes use of a project file that is actually XML-based. The biggest benefit of the same is it’s highly extensible, as well as straightforward. Developers can easily describe the items so that building process can be made easily. The information regarding the building process related to different configuration, as well as Operating system can also be grabbed from the same. To perform the build regularly, the developers have the option to simply build rules and keep them in a separate file. |
|