Home
last modified time | relevance | path

Searched refs:GlobalProperties (Results 1 – 25 of 163) sorted by relevance

1234567

/dports/devel/msbuild/msbuild-0.06/src/Build/BackEnd/Shared/
H A DConfigurationMetadata.cs30GlobalProperties = new PropertyDictionary<ProjectPropertyInstance>(configuration.GlobalProperties); in ConfigurationMetadata()
41GlobalProperties = new PropertyDictionary<ProjectPropertyInstance>(project.GlobalProperties.Count); in ConfigurationMetadata()
42 foreach (KeyValuePair<string, string> entry in project.GlobalProperties) in ConfigurationMetadata()
44 … this.GlobalProperties[entry.Key] = ProjectPropertyInstance.Create(entry.Key, entry.Value); in ConfigurationMetadata()
75 public PropertyDictionary<ProjectPropertyInstance> GlobalProperties property in Microsoft.Build.BackEnd.ConfigurationMetadata
148 GlobalProperties.Equals(other.GlobalProperties); in InternalEquals()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine.UnitTests/
H A DProjectManager_Tests.cs46 project1.GlobalProperties = globalProperties; in SimpleAddAndRetrieveProject()
70 p.GlobalProperties = globalProperties; in TestForDuplicatesInProjectTable()
83 p2.GlobalProperties = globalProperties; in TestForDuplicatesInProjectTable()
90 p3.GlobalProperties = new BuildPropertyGroup(); in TestForDuplicatesInProjectTable()
150 project1.GlobalProperties = globalProperties; in SimpleAddAndRetrieveProjectWithDifferentGlobals()
184 project1.GlobalProperties = globalProperties; in SimpleAddAndRetrieveProjectWithDifferentFullPath()
216 project1.GlobalProperties = globalProperties; in ResetBuildStatusForAllProjects()
220 project2.GlobalProperties = globalProperties; in ResetBuildStatusForAllProjects()
225 project3.GlobalProperties = globalProperties; in ResetBuildStatusForAllProjects()
268 project1.GlobalProperties = globalProperties; in RemoveProjectsByFullPath()
[all …]
H A DBuildRequest_Tests.cs40 …Assert.IsNull(firstConstructorRequest.GlobalProperties, "Expected firstConstructorRequest.GlobalPr… in TestConstructor1andProperties()
41 firstConstructorRequest.GlobalProperties = new BuildPropertyGroup(); in TestConstructor1andProperties()
42 …Assert.IsNotNull(firstConstructorRequest.GlobalProperties, "Expected firstConstructorRequest.Globa… in TestConstructor1andProperties()
52 …Assert.IsNotNull(firstConstructorRequest.GlobalProperties, "Expected GlobalPropertiesPassedByTask … in TestConstructor1andProperties()
53 …Assert.IsTrue(string.Compare(firstConstructorRequest.GlobalProperties["PropertyName"].Value, "Valu… in TestConstructor1andProperties()
80 … Assert.IsNull(secondConstructorRequest.GlobalProperties, "Expected GlobalProperties to be null"); in TestConstructor2andProperties()
241 request2.GlobalProperties = null; in TestCustomSerialization()
270 …Assert.IsTrue(string.Compare(request3.GlobalProperties["PropertyName"].Value,"Value",StringCompari… in TestCustomSerialization()
280 Assert.IsNull(request4.GlobalProperties); in TestCustomSerialization()
H A DSolutionWrapperProject_Tests.cs183 msbuildProject.GlobalProperties.SetProperty("Configuration", "Debug"); in TestAddPropertyGroupForSolutionConfiguration()
184 msbuildProject.GlobalProperties.SetProperty("Platform", "Mixed Platforms"); in TestAddPropertyGroupForSolutionConfiguration()
196 msbuildProject.GlobalProperties.SetProperty("Configuration", "Release"); in TestAddPropertyGroupForSolutionConfiguration()
197 msbuildProject.GlobalProperties.SetProperty("Platform", "Any CPU"); in TestAddPropertyGroupForSolutionConfiguration()
460 msbuildProject.GlobalProperties.SetProperty("Configuration", "Debug"); in TestVenusConfigurationDefaults()
463 msbuildProject.GlobalProperties.SetProperty("Configuration", "Release"); in TestVenusConfigurationDefaults()
466 msbuildProject.GlobalProperties.SetProperty("Configuration", "Other"); in TestVenusConfigurationDefaults()
668 engine.GlobalProperties.SetProperty("Configuration", "Release"); in TestPredictSolutionConfigurationName()
671 engine.GlobalProperties.SetProperty("Platform", "Win32"); in TestPredictSolutionConfigurationName()
674 engine.GlobalProperties.SetProperty("Configuration", "Nonexistent"); in TestPredictSolutionConfigurationName()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Engine/Test/Microsoft.Build.BuildEngine/
H A DEngineTest.cs144 Assert.IsNotNull (engine.GlobalProperties, "A1"); in TestGlobalProperties()
145 Assert.AreEqual (0, engine.GlobalProperties.Count, "A2"); in TestGlobalProperties()
147 Assert.IsFalse (engine.GlobalProperties.IsImported, "A4"); in TestGlobalProperties()
149 engine.GlobalProperties.SetProperty ("GlobalA", "value1"); in TestGlobalProperties()
150 Assert.AreEqual (1, engine.GlobalProperties.Count, "A5"); in TestGlobalProperties()
151 engine.GlobalProperties.SetProperty ("GlobalB", "value1"); in TestGlobalProperties()
152 Assert.AreEqual (2, engine.GlobalProperties.Count, "A6"); in TestGlobalProperties()
154 Assert.AreEqual (2, engine.GlobalProperties.Count, "A7"); in TestGlobalProperties()
564 engine.GlobalProperties = globalprops; in TestGlobalProperties4()
942 engine.GlobalProperties = engine_globals; in CreateAndCheckGlobalPropertiesTest()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Build.OM.UnitTests/Definition/
H A DProjectCollection_Tests.cs242 Assert.Equal("v", project.GlobalProperties["p"]); in GlobalPropertyInheritLoadFromXml1()
258 Assert.Equal("v", project.GlobalProperties["p"]); in GlobalPropertyInheritLoadFromXml2()
272 Assert.Equal("v", project.GlobalProperties["p"]); in GlobalPropertyInheritProjectConstructor()
575 Assert.Equal(0, project1.GlobalProperties.Count); in SettingGlobalPropertiesOnCollectionUpdatesProjects()
581 Assert.Equal(2, project1.GlobalProperties.Count); in SettingGlobalPropertiesOnCollectionUpdatesProjects()
587 Assert.Equal(1, project1.GlobalProperties.Count); in SettingGlobalPropertiesOnCollectionUpdatesProjects()
590 Assert.Equal(1, project2.GlobalProperties.Count); in SettingGlobalPropertiesOnCollectionUpdatesProjects()
610 Assert.Equal(2, project1.GlobalProperties.Count); in SettingGlobalPropertiesOnCollectionUpdatesProjects2()
626 Assert.Equal(0, project1.GlobalProperties.Count); in RemovingGlobalPropertiesOnCollectionUpdatesProjects()
640 Assert.Equal(2, project1.GlobalProperties.Count); in RemovingGlobalPropertiesOnCollectionUpdatesProjects()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Shared/UnitTests/
H A DMockEngine.cs167 public BuildPropertyGroup GlobalProperties property in Microsoft.Build.UnitTests.MockEngine
231 engine.GlobalProperties = GlobalProperties; in BuildProjectFilesInParallel()
258 engine.GlobalProperties = GlobalProperties; in BuildProjectFile()
268 engine.GlobalProperties = GlobalProperties; in BuildProjectFile()
278 engine.GlobalProperties = GlobalProperties; in BuildProjectFile()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Execution/
H A DBuildParameters.cs62 this.GlobalProperties = projectCollection.GlobalProperties; in BuildParameters()
79 …ret.GlobalProperties = GlobalProperties == null ? null : GlobalProperties.ToDictionary (p => p.Key… in Clone()
113 public IDictionary<string, string> GlobalProperties { get; set; } property in Microsoft.Build.Execution.BuildParameters
H A DBuildRequestData.cs93 ICollection<ProjectPropertyInstance> GlobalProperties { property in Microsoft.Build.Execution.BuildRequestData
94 …get { return ProjectInstance.Properties.Where (p => ProjectInstance.GlobalProperties.Any (i => i.K…
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Engine/
H A DEngineCallback.cs109 if (buildRequest.GlobalProperties == null) in ProcessBuildRequest()
114 buildRequest.GlobalProperties = new BuildPropertyGroup(); in ProcessBuildRequest()
115 buildRequest.GlobalProperties = in ProcessBuildRequest()
116 … parentEngine.MergeGlobalProperties(parentProject.GlobalProperties, null, in ProcessBuildRequest()
144 … if (!projectToBuild.GlobalProperties.IsEquivalent(buildRequest.GlobalProperties) && in ProcessBuildRequest()
148 … parentProject.FullFileName, buildRequest.GlobalProperties, in ProcessBuildRequest()
260 scopeProperties = parentProject.GlobalProperties; in SetCacheEntries()
313 scopeProperties = parentProject.GlobalProperties; in GetCacheEntries()
H A DEngine.cs619 public BuildPropertyGroup GlobalProperties property in Microsoft.Build.BuildEngine.Engine
972 initialProperties.ImportProperties(GlobalProperties); in PopulateToolsetStateMap()
974 …defaultVersionFromReaders = ToolsetReader.ReadAllToolsets(toolsets, GlobalProperties, initialPrope… in PopulateToolsetStateMap()
2128 … return this.BuildProjectFile(projectFile, null, this.GlobalProperties, null, BuildSettings.None); in BuildProjectFile()
2144 … return this.BuildProjectFile(projectFile, new string[] {targetName}, this.GlobalProperties, in BuildProjectFile()
2161 return this.BuildProjectFile(projectFile, targetNames, this.GlobalProperties, in BuildProjectFile()
2506 … error.VerifyThrow(buildRequest.GlobalProperties != null, "Global Properties should not be null"); in BuildProjectFileInternal()
2549 buildRequest.GlobalProperties, in BuildProjectFileInternal()
2599 projectFileInfo.FullName, buildRequest.GlobalProperties, in BuildProjectFileInternal()
2841 returnProject.GlobalProperties = globalPropertiesToUse; in GetMatchingProject()
[all …]
H A DRouter.cs110 …cheManager.GetCacheScope(buildRequest.ProjectFileName, buildRequest.GlobalProperties, buildRequest… in PostDoneNotice()
173 …anager.GetCacheScope(currentRequest.ProjectFileName, currentRequest.GlobalProperties, currentReque… in PostBuildRequest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/
H A DEngine.cs275 engine_old_grp = GlobalProperties.Clone (true); in BuildProjectFileInternal()
276 project_old_grp = project.GlobalProperties.Clone (true); in BuildProjectFileInternal()
281 project.GlobalProperties.AddProperty (bp); in BuildProjectFileInternal()
308 GlobalProperties = engine_old_grp; in BuildProjectFileInternal()
309 project.GlobalProperties = project_old_grp; in BuildProjectFileInternal()
549 public BuildPropertyGroup GlobalProperties { property in Microsoft.Build.BuildEngine.Engine
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Test/Microsoft.Build.Evaluation/
H A DProjectCollectionTest.cs43 public void GlobalProperties () in GlobalProperties() method in MonoTests.Microsoft.Build.Evaluation.ProjectCollectionTest
46 Assert.AreEqual (0, g.GlobalProperties.Count, "#1"); in GlobalProperties()
47 Assert.IsTrue (g.GlobalProperties.IsReadOnly, "#2"); in GlobalProperties()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Tools/Blender2.6Export/ogre_mesh_exporter/
H A D__init__.py67 from ogre_mesh_exporter.global_properties import GlobalProperties, loadStaticConfig
84 type = GlobalProperties,
/dports/devel/msbuild/msbuild-0.06/src/Samples/XmlFileLogger/ObjectModel/
H A DProject.cs124 if (projectStartedEventArgs.GlobalProperties != null) in TryUpdate()
126 Properties.AddProperties(projectStartedEventArgs.GlobalProperties); in TryUpdate()
/dports/science/orthanc-mysql/OrthancMySQL-4.3/MySQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancServer/Sources/Database/
H A DPrepareDatabase.sql32 CREATE TABLE GlobalProperties( table
157 INSERT INTO GlobalProperties VALUES (1, "6");
/dports/science/orthanc-dicomweb/OrthancDicomWeb-1.7/ThirdPartyDownloads/Orthanc-1.9.3/OrthancServer/Sources/Database/
H A DPrepareDatabase.sql32 CREATE TABLE GlobalProperties( table
157 INSERT INTO GlobalProperties VALUES (1, "6");
/dports/science/orthanc/Orthanc-1.9.7/OrthancServer/Sources/Database/
H A DPrepareDatabase.sql32 CREATE TABLE GlobalProperties( table
157 INSERT INTO GlobalProperties VALUES (1, "6");
/dports/science/orthanc-webviewer/OrthancWebViewer-2.7/ThirdPartyDownloads/Orthanc-1.8.1/OrthancServer/Sources/Database/
H A DPrepareDatabase.sql32 CREATE TABLE GlobalProperties( table
157 INSERT INTO GlobalProperties VALUES (1, "6");
/dports/science/orthanc-postgresql/OrthancPostgreSQL-4.0/PostgreSQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancServer/Sources/Database/
H A DPrepareDatabase.sql32 CREATE TABLE GlobalProperties( table
157 INSERT INTO GlobalProperties VALUES (1, "6");
/dports/devel/msbuild/msbuild-0.06/src/Build.UnitTests/BackEnd/
H A DBuildRequestConfiguration_Tests.cs168 …s.Count, Helpers.MakeList((IEnumerable<ProjectPropertyInstance>)(config1.GlobalProperties)).Count); in TestGetProperties()
314 Assert.Equal("3", instance.GlobalProperties["ThreeIn"]); in TestCache()
315 Assert.Equal("bazfile", instance.GlobalProperties["BazIn"]); in TestCache()
342 Assert.Equal("3", instance.GlobalProperties["ThreeIn"]); in TestCache()
343 Assert.Equal("bazfile", instance.GlobalProperties["BazIn"]); in TestCache()
/dports/net/bosh-cli/bosh-cli-5.5.0/templatescompiler/
H A Djob_evaluation_context.go41GlobalProperties biproperty.Map `json:"global_properties"` // values from manifest's top-level … member
91 GlobalProperties: ec.globalProperties,
/dports/devel/msbuild/msbuild-0.06/src/Build/Definition/
H A DProjectCollection.cs500 public IDictionary<string, string> GlobalProperties property in Microsoft.Build.Evaluation.ProjectCollection
1069 globalProperties = GlobalProperties; in LoadProject()
1077 foreach (KeyValuePair<string, string> globalProperty in GlobalProperties) in LoadProject()
1357 … eventArgs = new ProjectCollectionChangedEventArgs(ProjectCollectionChangedState.GlobalProperties); in SetGlobalProperty()
1391 …tionChanged(new ProjectCollectionChangedEventArgs(ProjectCollectionChangedState.GlobalProperties)); in RemoveGlobalProperty()
2367 …if (HasEquivalentGlobalPropertiesAndToolsVersion(existing, project.GlobalProperties, project.Tools… in AddProject()
2439 if (project.GlobalProperties.Count != globalProperties.Count) in HasEquivalentGlobalPropertiesAndToolsVersion()
2444 foreach (KeyValuePair<string, string> leftProperty in project.GlobalProperties) in HasEquivalentGlobalPropertiesAndToolsVersion()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/
H A DProjectCollectionChangedState.cs10 GlobalProperties, enumerator

1234567