1 write to _cacheInfoList
PresentationBuildTasks (1)
BuildTasks\MS\Internal\Tasks\CompilerState.cs (1)
69_cacheInfoList = new String[(int)CompilerStateType.MaxCount];
42 references to _cacheInfoList
PresentationBuildTasks (42)
BuildTasks\MS\Internal\Tasks\CompilerState.cs (42)
101Debug.Assert(_cacheInfoList.Length == (int)CompilerStateType.MaxCount, "The Cache string array should be already allocated."); 142sw.WriteLine(_cacheInfoList[i]); 161Debug.Assert(_cacheInfoList.Length == (int)CompilerStateType.MaxCount, "The Cache string array should be already allocated."); 195_cacheInfoList[i] = srCache.ReadLine(); 270get { return _cacheInfoList[(int)CompilerStateType.AssemblyName]; } 271set { _cacheInfoList[(int)CompilerStateType.AssemblyName] = value; } 276get { return _cacheInfoList[(int)CompilerStateType.AssemblyVersion]; } 277set { _cacheInfoList[(int)CompilerStateType.AssemblyVersion] = value; } 282get { return _cacheInfoList[(int)CompilerStateType.AssemblyPublicKeyToken]; } 283set { _cacheInfoList[(int)CompilerStateType.AssemblyPublicKeyToken] = value; } 288get { return _cacheInfoList[(int)CompilerStateType.OutputType]; } 289set { _cacheInfoList[(int)CompilerStateType.OutputType] = value; } 294get { return _cacheInfoList[(int)CompilerStateType.Language]; } 295set { _cacheInfoList[(int)CompilerStateType.Language] = value; } 300get { return _cacheInfoList[(int)CompilerStateType.LanguageSourceExtension]; } 301set { _cacheInfoList[(int)CompilerStateType.LanguageSourceExtension] = value; } 306get { return _cacheInfoList[(int)CompilerStateType.OutputPath]; } 307set { _cacheInfoList[(int)CompilerStateType.OutputPath] = value; } 312get { return _cacheInfoList[(int)CompilerStateType.RootNamespace]; } 313set { _cacheInfoList[(int)CompilerStateType.RootNamespace] = value; } 318get { return _cacheInfoList[(int)CompilerStateType.LocalizationDirectivesToLocFile]; } 319set { _cacheInfoList[(int)CompilerStateType.LocalizationDirectivesToLocFile] = value; } 324get { return _cacheInfoList[(int)CompilerStateType.HostInBrowser]; } 325set { _cacheInfoList[(int)CompilerStateType.HostInBrowser] = value; } 330get { return _cacheInfoList[(int)CompilerStateType.DefineConstants]; } 331set { _cacheInfoList[(int)CompilerStateType.DefineConstants] = value; } 336get { return _cacheInfoList[(int)CompilerStateType.ApplicationFile]; } 337set { _cacheInfoList[(int)CompilerStateType.ApplicationFile] = value; } 342get { return _cacheInfoList[(int)CompilerStateType.PageMarkup]; } 343set { _cacheInfoList[(int)CompilerStateType.PageMarkup] = value; } 348get { return _cacheInfoList[(int)CompilerStateType.ContentFiles]; } 349set { _cacheInfoList[(int)CompilerStateType.ContentFiles] = value; } 354get { return _cacheInfoList[(int)CompilerStateType.SourceCodeFiles]; } 355set { _cacheInfoList[(int)CompilerStateType.SourceCodeFiles] = value; } 360get { return _cacheInfoList[(int)CompilerStateType.References]; } 361set { _cacheInfoList[(int)CompilerStateType.References] = value; } 366get { return _cacheInfoList[(int)CompilerStateType.PageMarkupFileNames]; } 367set { _cacheInfoList[(int)CompilerStateType.PageMarkupFileNames] = value; } 372get { return _cacheInfoList[(int)CompilerStateType.SplashImage]; } 373set { _cacheInfoList[(int)CompilerStateType.SplashImage] = value; } 378get { return _cacheInfoList[(int)CompilerStateType.Pass2Required] == bool.TrueString; } 379set { _cacheInfoList[(int)CompilerStateType.Pass2Required] = value.ToString(CultureInfo.InvariantCulture); }