2 writes to appDir
ComSvcConfig (2)
ComplusEndpointConfigContainer.cs (2)
45this.appDir = appInfo.ApplicationDirectory; 56this.appDir = GeneratedAppDirectoryName();
11 references to appDir
ComSvcConfig (11)
ComplusEndpointConfigContainer.cs (11)
48if (!Directory.Exists(this.appDir)) 51throw Tool.CreateException(SR.GetString(SR.ApplicationDirectoryDoesNotExist, appDir), null); 58if (!Directory.Exists(this.appDir)) 62this.configFile = new AtomicFile(Path.Combine(this.appDir, "application.config")); 63this.manifestFile = new AtomicFile(Path.Combine(this.appDir, "application.manifest")); 85if (Directory.Exists(this.appDir)) 87Directory.Delete(this.appDir); 287Directory.CreateDirectory(this.appDir); 289ToolConsole.WriteLine(SR.GetString(SR.DirectoryCreated, this.appDir)); 292ComAdminWrapper.SetAppDir(this.appInfo.ID.ToString("B"), this.appDir); 318ComAdminWrapper.InstallListener(this.appInfo.ID, this.appDir, this.appInfo.RuntimeVersion);