Visual Studio 2013 솔루션에 많은 VC 프로젝트가 있습니다. 각 프로젝트마다 대부분의 속성을 프로젝트 폴더에 속한 속성 시트 AllConfigurations.props
에 보관합니다. 해당 프로젝트에 대한 프로젝트 템플릿을 만들려고합니다. 나는 zip 파일을 템플릿 .vstemplate에서 참조 할 AllConfigurations.props
을 추가VC 프로젝트 템플릿에 속성 시트를 포함하는 방법
<Project TargetFileName="Test.vcxproj" File="Test.vcxproj" ReplaceParameters="true">
<ProjectItem ReplaceParameters="false" TargetFileName="AllConfigurations.props">AllConfigurations.props</ProjectItem>
을하지만이 템플릿으로 새 프로젝트를 만들 때 Visual Studio에서 오류 표시 : 프로젝트가 추가되지 않는
Unable to read the project file "Test1.vcxproj". Test1\Test1.vcxproj(76,5): The imported project "Test1\AllConfigurations.props" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
을 해결책. 그것은 VS 템플릿에서 모든 파일의 압축을 풀기 전에 새 프로젝트를로드하려고합니다 것 같습니다.
어떻게 처리합니까?
그렉, 아이디어에 감사드립니다. 불행히도, 프로젝트의 견고성이 최우선 과제이기 때문에 제 경우에는 그것을 적용 할 수 없습니다. – Nikerboker