VCPlatform.ExcludeDirectories 속성
Visual C++ 프로젝트를 빌드하는 동안 파일을 검색할 때 제외할 경로를 가져오거나 설정합니다.
네임스페이스: Microsoft.VisualStudio.VCProjectEngine
어셈블리: Microsoft.VisualStudio.VCProjectEngine(Microsoft.VisualStudio.VCProjectEngine.dll)
구문
‘선언
Property ExcludeDirectories As String
string ExcludeDirectories { get; set; }
property String^ ExcludeDirectories {
String^ get ();
void set (String^ value);
}
abstract ExcludeDirectories : string with get, set
function get ExcludeDirectories () : String
function set ExcludeDirectories (value : String)
속성 값
형식: System.String
검색하지 않을 디렉터리 목록이 포함된 문자열입니다.
설명
기본적으로 Visual C++ 2010에서이 속성이 하지 부모에서 상속 또는 프로젝트 기본값입니다.제외 경로 설정할 때 기본값을 상속 하는 프로젝트를 추가 합니다. $(ExcludePath) 매크로 경로입니다.
예제
다음 데모 코드 경로 C:\a 및 상속 된 부모 또는 프로젝트 기본값 경로 제외 됩니다.
VCProject^ project=(VCProject^)m_dtTest->DTE->Solution->Item(1)->Object;
IVCCollection^ plats = (IVCCollection^)project->Platforms;
VCPlatform^ platform = (VCPlatform^)plats->Item(1);
platform->ExcludeDirectories = "C:\a";$(ExcludePath)
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.