43 references to CompilerStateType
PresentationBuildTasks (43)
MS\Internal\Tasks\CompilerState.cs (43)
61_cacheInfoList = new String[(int)CompilerStateType.MaxCount]; 93Debug.Assert(_cacheInfoList.Length == (int)CompilerStateType.MaxCount, "The Cache string array should be already allocated."); 132for (int i =0; i<(int)CompilerStateType.MaxCount; i++) 153Debug.Assert(_cacheInfoList.Length == (int)CompilerStateType.MaxCount, "The Cache string array should be already allocated."); 182if (i >= (int)CompilerStateType.MaxCount) 305get { return _cacheInfoList[(int)CompilerStateType.AssemblyName]; } 306set { _cacheInfoList[(int)CompilerStateType.AssemblyName] = value; } 311get { return _cacheInfoList[(int)CompilerStateType.AssemblyVersion]; } 312set { _cacheInfoList[(int)CompilerStateType.AssemblyVersion] = value; } 317get { return _cacheInfoList[(int)CompilerStateType.AssemblyPublicKeyToken]; } 318set { _cacheInfoList[(int)CompilerStateType.AssemblyPublicKeyToken] = value; } 323get { return _cacheInfoList[(int)CompilerStateType.OutputType]; } 324set { _cacheInfoList[(int)CompilerStateType.OutputType] = value; } 329get { return _cacheInfoList[(int)CompilerStateType.Language]; } 330set { _cacheInfoList[(int)CompilerStateType.Language] = value; } 335get { return _cacheInfoList[(int)CompilerStateType.LanguageSourceExtension]; } 336set { _cacheInfoList[(int)CompilerStateType.LanguageSourceExtension] = value; } 341get { return _cacheInfoList[(int)CompilerStateType.OutputPath]; } 342set { _cacheInfoList[(int)CompilerStateType.OutputPath] = value; } 347get { return _cacheInfoList[(int)CompilerStateType.RootNamespace]; } 348set { _cacheInfoList[(int)CompilerStateType.RootNamespace] = value; } 353get { return _cacheInfoList[(int)CompilerStateType.LocalizationDirectivesToLocFile]; } 354set { _cacheInfoList[(int)CompilerStateType.LocalizationDirectivesToLocFile] = value; } 359get { return _cacheInfoList[(int)CompilerStateType.HostInBrowser]; } 360set { _cacheInfoList[(int)CompilerStateType.HostInBrowser] = value; } 365get { return _cacheInfoList[(int)CompilerStateType.DefineConstants]; } 366set { _cacheInfoList[(int)CompilerStateType.DefineConstants] = value; } 371get { return _cacheInfoList[(int)CompilerStateType.ApplicationFile]; } 372set { _cacheInfoList[(int)CompilerStateType.ApplicationFile] = value; } 377get { return _cacheInfoList[(int)CompilerStateType.PageMarkup]; } 378set { _cacheInfoList[(int)CompilerStateType.PageMarkup] = value; } 383get { return _cacheInfoList[(int)CompilerStateType.ContentFiles]; } 384set { _cacheInfoList[(int)CompilerStateType.ContentFiles] = value; } 389get { return _cacheInfoList[(int)CompilerStateType.SourceCodeFiles]; } 390set { _cacheInfoList[(int)CompilerStateType.SourceCodeFiles] = value; } 395get { return _cacheInfoList[(int)CompilerStateType.References]; } 396set { _cacheInfoList[(int)CompilerStateType.References] = value; } 401get { return _cacheInfoList[(int)CompilerStateType.PageMarkupFileNames]; } 402set { _cacheInfoList[(int)CompilerStateType.PageMarkupFileNames] = value; } 407get { return _cacheInfoList[(int)CompilerStateType.SplashImage]; } 408set { _cacheInfoList[(int)CompilerStateType.SplashImage] = value; } 413get { return _cacheInfoList[(int)CompilerStateType.Pass2Required] == bool.TrueString; } 414set { _cacheInfoList[(int)CompilerStateType.Pass2Required] = value.ToString(CultureInfo.InvariantCulture); }