Bari.Plugins.VsCore.VisualStudio.DefaultProjectGuidManagement.DefaultProjectGuidManagement C# (CSharp) Method

DefaultProjectGuidManagement() public method

Initializes the GUID management service
public DefaultProjectGuidManagement ( [ cacheRoot, Suite suite ) : System
cacheRoot [ Cache root directory
suite Suite Active suite
return System
        public DefaultProjectGuidManagement([CacheRoot] Lazy<IFileSystemDirectory> cacheRoot, Suite suite)
        {
            Contract.Requires(cacheRoot != null);
            Contract.Requires(suite != null);

            this.cacheRoot = cacheRoot;
            this.suite = suite;
        }