1 write to _cacheInfoList
PresentationBuildTasks (1)
MS\Internal\Tasks\CompilerState.cs (1)
64_cacheInfoList = new String[(int)CompilerStateType.MaxCount];
42 references to _cacheInfoList
PresentationBuildTasks (42)
MS\Internal\Tasks\CompilerState.cs (42)
96Debug.Assert(_cacheInfoList.Length == (int)CompilerStateType.MaxCount, "The Cache string array should be already allocated."); 137sw.WriteLine(_cacheInfoList[i]); 156Debug.Assert(_cacheInfoList.Length == (int)CompilerStateType.MaxCount, "The Cache string array should be already allocated."); 190_cacheInfoList[i] = srCache.ReadLine(); 308get { return _cacheInfoList[(int)CompilerStateType.AssemblyName]; } 309set { _cacheInfoList[(int)CompilerStateType.AssemblyName] = value; } 314get { return _cacheInfoList[(int)CompilerStateType.AssemblyVersion]; } 315set { _cacheInfoList[(int)CompilerStateType.AssemblyVersion] = value; } 320get { return _cacheInfoList[(int)CompilerStateType.AssemblyPublicKeyToken]; } 321set { _cacheInfoList[(int)CompilerStateType.AssemblyPublicKeyToken] = value; } 326get { return _cacheInfoList[(int)CompilerStateType.OutputType]; } 327set { _cacheInfoList[(int)CompilerStateType.OutputType] = value; } 332get { return _cacheInfoList[(int)CompilerStateType.Language]; } 333set { _cacheInfoList[(int)CompilerStateType.Language] = value; } 338get { return _cacheInfoList[(int)CompilerStateType.LanguageSourceExtension]; } 339set { _cacheInfoList[(int)CompilerStateType.LanguageSourceExtension] = value; } 344get { return _cacheInfoList[(int)CompilerStateType.OutputPath]; } 345set { _cacheInfoList[(int)CompilerStateType.OutputPath] = value; } 350get { return _cacheInfoList[(int)CompilerStateType.RootNamespace]; } 351set { _cacheInfoList[(int)CompilerStateType.RootNamespace] = value; } 356get { return _cacheInfoList[(int)CompilerStateType.LocalizationDirectivesToLocFile]; } 357set { _cacheInfoList[(int)CompilerStateType.LocalizationDirectivesToLocFile] = value; } 362get { return _cacheInfoList[(int)CompilerStateType.HostInBrowser]; } 363set { _cacheInfoList[(int)CompilerStateType.HostInBrowser] = value; } 368get { return _cacheInfoList[(int)CompilerStateType.DefineConstants]; } 369set { _cacheInfoList[(int)CompilerStateType.DefineConstants] = value; } 374get { return _cacheInfoList[(int)CompilerStateType.ApplicationFile]; } 375set { _cacheInfoList[(int)CompilerStateType.ApplicationFile] = value; } 380get { return _cacheInfoList[(int)CompilerStateType.PageMarkup]; } 381set { _cacheInfoList[(int)CompilerStateType.PageMarkup] = value; } 386get { return _cacheInfoList[(int)CompilerStateType.ContentFiles]; } 387set { _cacheInfoList[(int)CompilerStateType.ContentFiles] = value; } 392get { return _cacheInfoList[(int)CompilerStateType.SourceCodeFiles]; } 393set { _cacheInfoList[(int)CompilerStateType.SourceCodeFiles] = value; } 398get { return _cacheInfoList[(int)CompilerStateType.References]; } 399set { _cacheInfoList[(int)CompilerStateType.References] = value; } 404get { return _cacheInfoList[(int)CompilerStateType.PageMarkupFileNames]; } 405set { _cacheInfoList[(int)CompilerStateType.PageMarkupFileNames] = value; } 410get { return _cacheInfoList[(int)CompilerStateType.SplashImage]; } 411set { _cacheInfoList[(int)CompilerStateType.SplashImage] = value; } 416get { return _cacheInfoList[(int)CompilerStateType.Pass2Required] == bool.TrueString; } 417set { _cacheInfoList[(int)CompilerStateType.Pass2Required] = value.ToString(CultureInfo.InvariantCulture); }