AddFilesToProject
将 Templates.inf 中列出的所有文件添加到项目中。
function AddFilesToProject(
oProj,
strProjectName,
InfFile
);
参数
oProj
选定的项目。strProjectName
项目的名称。InfFile
Templates.inf 文件对象。 该文件包含向导在完成时创建的文件名列表。
备注
调用该函数可将 Templates.inf 中列出的所有文件添加到项目中。 使用该函数可以添加模板文件、资源文件或帮助文件。
示例
// Assign the project path and project name.
var strProjectPath = wizard.FindSymbol("PROJECT_PATH");
var strProjectName = wizard.FindSymbol("PROJECT_NAME");
// Create the Visual C++ project and call it "MyProj"
selProj = CreateProject(strProjectName, strProjectPath);
selProj.Object.Keyword = "MyProj";
// Add common and specific configurations to the project.
AddCommonConfig(selProj, strProjectName);
AddSpecificConfig(selProj, strProjectName);
// Set the project filters
SetFilters(selProj);
// Create the project's Templates.inf file
var InfFile = CreateInfFile();
// Add the files in Templates.inf to the project.
AddFilesToProject(selProj, strProjectName, InfFile);