Home
last modified time | relevance | path

Searched refs:projectGuid (Results 1 – 19 of 19) sorted by relevance

/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DResolveProjectBase.cs157 string projectGuid = xmlElement.GetAttribute(attributeProject); in CacheProjectElementsFromXml()
167 if (!string.IsNullOrEmpty(projectGuid)) in CacheProjectElementsFromXml()
169 _cachedProjectElements[projectGuid] = xmlElement; in CacheProjectElementsFromXml()
173 _cachedProjectAbsolutePathsByGuid[projectGuid] = projectAbsolutePath; in CacheProjectElementsFromXml()
174 _cachedProjectGuidsByAbsolutePath[projectAbsolutePath] = projectGuid; in CacheProjectElementsFromXml()
202 … _cachedDependencyProjectGuidsByDependingProjectGuid.Add(projectGuid, list); in CacheProjectElementsFromXml()
230 string projectGuid = projectRef.GetMetadata(attributeProject); in GetProjectElement()
233 …if ((_cachedProjectElements.TryGetValue(projectGuid, out projectElement)) && (projectElement != nu… in GetProjectElement()
257 string projectGuid; in AddSyntheticProjectReferences()
258 … if (!_cachedProjectGuidsByAbsolutePath.TryGetValue(currentProjectAbsolutePath, out projectGuid)) in AddSyntheticProjectReferences()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Tasks.UnitTests/
H A DResolveNonMSBuildProjectOutput_Tests.cs20 …static internal ITaskItem CreateReferenceItem(string itemSpec, string projectGuid, string package,… in CreateReferenceItem() argument
24 if (projectGuid != null) in CreateReferenceItem()
25 reference.SetMetadata(attributeProject, projectGuid); in CreateReferenceItem()
34 …private void TestVerifyReferenceAttributesHelper(string itemSpec, string projectGuid, string packa… in TestVerifyReferenceAttributesHelper() argument
37 ITaskItem reference = CreateReferenceItem(itemSpec, projectGuid, package, name); in TestVerifyReferenceAttributesHelper()
45 itemSpec, projectGuid, package, name, expectedResult, result, in TestVerifyReferenceAttributesHelper()
85 … private void TestResolveHelper(string itemSpec, string projectGuid, string package, string name, in TestResolveHelper() argument
88 ITaskItem reference = CreateReferenceItem(itemSpec, projectGuid, package, name); in TestResolveHelper()
98 …itemSpec, projectGuid, package, name, xmlString, expectedResult, result, expectedPath, resolvedPat… in TestResolveHelper()
H A DAssignProjectConfiguration_Tests.cs23 … private void TestResolveHelper(string itemSpec, string projectGuid, string package, string name, in TestResolveHelper() argument
27 …e = ResolveNonMSBuildProjectOutput_Tests.CreateReferenceItem(itemSpec, projectGuid, package, name); in TestResolveHelper()
40 …itemSpec, projectGuid, package, name, xmlString, expectedResult, result, expectedFullConfiguration, in TestResolveHelper()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Shared/
H A DProjectInSolution.cs71 … private string projectGuid; // The unique Guid assigned to this project or SLN folder. field in Microsoft.Build.BuildEngine.Shared.ProjectInSolution
99 projectGuid = null; in ProjectInSolution()
152 get { return projectGuid; }
153 set { projectGuid = value; }
H A DSolutionParser.cs1071 string projectGuid = match.Groups["PROPERTYNAME"].Value.Trim(); in ParseNestedProjects()
1074 ProjectInSolution proj = (ProjectInSolution)projects[projectGuid]; in ParseNestedProjects()
1319 internal string GetProjectUniqueNameByGuid(string projectGuid) in GetProjectUniqueNameByGuid() argument
1321 ProjectInSolution proj = (ProjectInSolution) projects[projectGuid]; in GetProjectUniqueNameByGuid()
1332 internal string GetProjectRelativePathByGuid(string projectGuid) in GetProjectRelativePathByGuid() argument
1334 ProjectInSolution proj = (ProjectInSolution) projects[projectGuid]; in GetProjectRelativePathByGuid()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Test/
H A DFunctionalTest.cs57 Assert.AreEqual (projectGuid, GetProjectId (project), "#01"); in TestFullProjectGeneration()
126 properties.AddProperty ("ProjectGuid", projectGuid.ToString ("B")); in SetKnownProperties()
143 … static readonly Guid projectGuid = Guid.Parse ("{362F36B0-B26C-42DE-8586-20DF66BD05E8}"); field in MonoTests.Microsoft.Build.FunctionalTest
/dports/devel/msbuild/msbuild-0.06/src/Build/Construction/Solution/
H A DSolutionFile.cs1344 string projectGuid = match.Groups["PROPERTYNAME"].Value.Trim(); in ParseNestedProjects()
1348 if (!_projects.TryGetValue(projectGuid, out proj)) in ParseNestedProjects()
1351 …h, _currentLineNumber, 0), "SolutionParseNestedProjectUndefinedError", projectGuid, parentProjectG… in ParseNestedProjects()
1600 internal string GetProjectUniqueNameByGuid(string projectGuid) in GetProjectUniqueNameByGuid() argument
1603 if (_projects.TryGetValue(projectGuid, out proj)) in GetProjectUniqueNameByGuid()
1617 internal string GetProjectRelativePathByGuid(string projectGuid) in GetProjectRelativePathByGuid() argument
1620 if (_projects.TryGetValue(projectGuid, out proj)) in GetProjectRelativePathByGuid()
H A DSolutionProjectGenerator.cs540 string projectGuid = proj.ProjectGuid.Substring(1, proj.ProjectGuid.Length - 2); in GenerateSafePropertyName()
541 return "Project_" + projectGuid + "_" + propertyName; in GenerateSafePropertyName()
/dports/devel/premake5/premake-5.0.0-alpha16-src/modules/vstudio/
H A Dvs2005_fsproj.lua38 dotnetbase.projectGuid,
H A Dvs2005_csproj.lua63 dotnetbase.projectGuid,
H A Dvs2005_dotnetbase.lua680 function dotnetbase.projectGuid(cfg) function
H A Dvs2010_vcxproj.lua129 m.projectGuid,
2473 function m.projectGuid(prj) function
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Conversion/
H A DConstants.cs79 internal const string projectGuid = "ProjectGuid"; field in Microsoft.Build.Conversion.VSProjectAttributes
H A DProjectFileConverter.cs150 private string projectGuid = null; field in Microsoft.Build.Conversion.ProjectFileConverter
394 this.projectGuid = null; in Initialize()
1520 this.projectGuid = languageElement.GetAttribute(VSProjectAttributes.projectGuid); in ProcessLanguageElement()
1521 …ProjectErrorUtilities.VerifyThrowInvalidProject((this.projectGuid != null) || (this.isUserFile == … in ProcessLanguageElement()
1522 …nguageElement.Location, "MissingAttribute", languageElement.Name, VSProjectAttributes.projectGuid); in ProcessLanguageElement()
2795 error.VerifyThrow(this.projectGuid != null, "Need project Guid to find solution file."); in SearchForSolutionFile()
2824 if (solutionParser.GetProjectUniqueNameByGuid(this.projectGuid) != null) in SearchForSolutionFile()
/dports/games/0ad/0ad-0.0.23b-alpha/build/premake/premake5/modules/vstudio/
H A Dvs2005_csproj.lua628 function cs2005.projectGuid(cfg) function
H A Dvs2010_vcxproj.lua125 m.projectGuid,
2113 function m.projectGuid(prj) function
/dports/lang/mono/mono-5.10.1.57/mcs/tools/xbuild/
H A DSolutionParser.cs555 string projectGuid = infoPair.Key.ToString (); in AddWebsiteProperties()
596 bpg.AddNewProperty (String.Format ("Project_{0}_AspNet{1}", projectGuid, propertyName), in AddWebsiteProperties()
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/ProjectSaving/
H A Djucer_ProjectExport_MSVC.h372 projectGuid = createGUID (owner.getProject().getProjectUIDString() + getName()); in MSVCTargetBase()
992 const String& getProjectGuid() const { return projectGuid; } in getProjectGuid()
1382 String projectGuid; variable
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Solution/
H A DSolutionWrapperProject.cs1465 string projectGuid = proj.ProjectGuid.Substring(1, proj.ProjectGuid.Length - 2); in GenerateSafePropertyName()
1466 return "Project_" + projectGuid + "_" + propertyName; in GenerateSafePropertyName()