Microsoft.VisualStudio.Project.DesignTimeAssemblyResolution.RarInputs.GetStateFile C# (CSharp) Méthode

GetStateFile() protected static méthode

protected static GetStateFile ( Microsoft.Build.Execution.ProjectInstance projectInstance ) : string
projectInstance Microsoft.Build.Execution.ProjectInstance
Résultat string
            protected static string GetStateFile(ProjectInstance projectInstance)
            {
                string intermediatePath = projectInstance.GetPropertyValue(IntermediateOutputPath).Trim();

                intermediatePath = GetFullPathInProjectContext(projectInstance, intermediatePath);

                string stateFile = Path.Combine(intermediatePath, "DesignTimeResolveAssemblyReferences.cache");

                return stateFile;
            }