Home
last modified time | relevance | path

Searched refs:ProjectProperty (Results 1 – 25 of 43) sorted by relevance

12

/dports/devel/msbuild/msbuild-0.06/src/Build/Definition/
H A DProjectProperty.cs23 public abstract class ProjectProperty : IKeyed, IValued, IProperty, IEquatable<ProjectProperty> class
165 public abstract ProjectProperty Predecessor
204 #region IEquatable<ProjectProperty> Members
211 bool IEquatable<ProjectProperty>.Equals(ProjectProperty other) in Equals()
248 …internal static ProjectProperty Create(Project project, ProjectPropertyElement xml, string evaluat… in Create()
302 private class ProjectPropertyXmlBacked : ProjectProperty
419 public override ProjectProperty Predecessor
453 private ProjectProperty _predecessor;
476 public override ProjectProperty Predecessor
488 private class ProjectPropertyNotXmlBacked : ProjectProperty
[all …]
H A DProject.cs767 public ICollection<ProjectProperty> Properties
925 public ICollection<ProjectProperty> AllEvaluatedProperties
1711 public ProjectProperty GetProperty(string name) in GetProperty()
1750 ProjectProperty property = _data.Properties[name]; in SetProperty()
2009 public bool RemoveProperty(ProjectProperty property) in RemoveProperty()
3596ProjectProperty property = ProjectProperty.Create(this.Project, name, evaluatedValueEscaped, isGlo… in SetProperty()
3611 …public ProjectProperty SetProperty(ProjectPropertyElement propertyElement, string evaluatedValueEs… in SetProperty()
3613ProjectProperty property = ProjectProperty.Create(this.Project, propertyElement, evaluatedValueEsc… in SetProperty()
3714 #region IPropertyProvider<ProjectProperty> Members
3721 public ProjectProperty GetProperty(string name) in GetProperty()
[all …]
H A DProjectItem.cs462 …if (null != metadatum && Expander<ProjectProperty, ProjectItem>.ExpressionMayContainExpandableExpr… in IItem.GetMetadataValueEscaped()
464 …Expander<ProjectProperty, ProjectItem> expander = new Expander<ProjectProperty, ProjectItem>(null,… in IItem.GetMetadataValueEscaped()
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/test/evosuite-tests/uk/ac/sanger/artemis/components/
H A DProjectProperty_ESTest.java20 import uk.ac.sanger.artemis.components.ProjectProperty;
31 ProjectProperty.writeProperties(mockFile0, hashMap0); in test0()
42 ProjectProperty.writeProperties(mockFile0, hashMap0); in test1()
51 ProjectProperty.writeProperties((File) null, hashMap0); in test2()
66 ProjectProperty.getProjectMap((Properties) null); in test3()
79 ProjectProperty projectProperty0 = null; in test4()
94 ProjectProperty projectProperty0 = null; in test5()
96 projectProperty0 = new ProjectProperty(); in test5()
114 ProjectProperty.writeProperties(file0, hashMap0); in test6()
133 ProjectProperty.getProjectMap(properties0); in test8()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Build.OM.UnitTests/Definition/
H A DProjectProperty_Tests.cs32 ProjectProperty property = project.SetProperty("p", "v"); in ProjectGetter()
51 ProjectProperty property = GetFirstProperty(content); in NoExpansion()
74 ProjectProperty property = GetFirstProperty(content); in ExpandProperty()
89 ProjectProperty property = project.SetProperty("p", "v1"); in SetValue()
106 ProjectProperty property = project.SetProperty("p", "v1"); in SetValue_Escaped()
124 ProjectProperty property = project.SetProperty("p", "v1"); in SetValueSameValue()
159 ProjectProperty property = project.GetProperty(varName); in SetValueEnvironmentProperty()
229 ProjectProperty property = project.SetProperty("p1", "v1"); in SetPropertyWithPropertyExpression()
248 ProjectProperty property = project.SetProperty("p1", "v1"); in SetPropertyWithItemAndMetadataExpression()
290 private static ProjectProperty GetFirstProperty(string content) in GetFirstProperty()
[all …]
H A DProtectImports_Tests.cs148 ProjectProperty property = GetProperty(project); in PropertySetViaProperty()
164 ProjectProperty property = GetProperty(project); in PropertySetViaProject()
180 ProjectProperty property = GetProperty(project); in PropertyRemove()
640 private ProjectProperty GetProperty(Project project) in GetProperty()
642 ProjectProperty property = project.GetProperty(PropertyName); in GetProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/
H A DProjectProperty.cs43 public abstract class ProjectProperty class
45 internal ProjectProperty (Project project) // hide default ctor in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
69 public abstract ProjectProperty Predecessor { get; }
88 internal abstract class BaseProjectProperty : ProjectProperty
119 readonly ProjectProperty predecessor;
120 public override ProjectProperty Predecessor {
218 public override ProjectProperty Predecessor {
274 public override ProjectProperty Predecessor {
H A DProject.cs176 List<ProjectProperty> properties;
187 properties = new List<ProjectProperty> (); in Initialize()
538 public static string GetPropertyValueEscaped (ProjectProperty property) in GetPropertyValueEscaped()
547 public ProjectProperty GetProperty (string name) in GetProperty()
575 public bool RemoveProperty (ProjectProperty property) in RemoveProperty()
620 public ProjectProperty SetProperty (string name, string unevaluatedValue) in SetProperty()
635 public ICollection<ProjectProperty> AllEvaluatedProperties {
714 public ICollection<ProjectProperty> Properties {
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/uk/ac/sanger/artemis/components/
H A DProjectProperty.java88 public class ProjectProperty extends JFrame class
109 public ProjectProperty() in ProjectProperty() method in ProjectProperty
125 public ProjectProperty(Splash splash) in ProjectProperty() method in ProjectProperty
801 case ProjectProperty.REFERENCE: in getArgs()
807 case ProjectProperty.ANNOTATION: in getArgs()
812 case ProjectProperty.NEXT_GEN_DATA : in getArgs()
815 case ProjectProperty.VCF : in getArgs()
818 case ProjectProperty.USERPLOT: in getArgs()
828 case ProjectProperty.LOGUSERPLOT: in getArgs()
838 case ProjectProperty.CHADO: in getArgs()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/XamlBuildTask/Microsoft/Build/Tasks/Xaml/
H A DGenerateTemporaryAssemblyTask.cs106 new ProjectProperty[] { in Execute()
107 new ProjectProperty() { Name = "OutputType", Value = "Library" }, in Execute()
108 … new ProjectProperty() { Name = "AssemblyName", Value = this.AssemblyName }, in Execute()
109 … new ProjectProperty() { Name = "Utf8Output", Value = "true", Condition = "'$(Utf8Output)' == ''" } in Execute()
203 void AddNewProperties(XElement project, IEnumerable<ProjectProperty> properties) in AddNewProperties()
209 foreach (ProjectProperty prop in properties) in AddNewProperties()
225 class ProjectProperty class in Microsoft.Build.Tasks.Xaml.GenerateTemporaryAssemblyTask
/dports/biology/artemis/artemis-17.0.1-11-g3e43d27e/test/uk/ac/sanger/artemis/components/
H A DProjectPropertyTest.java58 projects = ProjectProperty.getProjectMap(projectProps); in loadProperties()
113 ProjectProperty pp = new ProjectProperty(); in launch()
135 ProjectProperty.writeProperties(tmpFile, projects); in writeAndReadProperties()
142 tmpProjects = ProjectProperty.getProjectMap(projectProps); in writeAndReadProperties()
/dports/devel/py-vsts/vsts-0.1.25/vsts/core/v4_0/models/
H A Dproject_property.py12 class ProjectProperty(Model): class
27 super(ProjectProperty, self).__init__()
H A D__init__.py16 from .project_property import ProjectProperty
/dports/devel/py-vsts/vsts-0.1.25/vsts/core/v4_1/models/
H A Dproject_property.py12 class ProjectProperty(Model): class
27 super(ProjectProperty, self).__init__()
H A D__init__.py17 from .project_property import ProjectProperty
/dports/devel/msbuild/msbuild-0.06/src/Build.UnitTests/Evaluation/
H A DEvaluator_Tests.cs1382 ProjectProperty property = project.GetProperty("p"); in PropertyPredecessors()
1834 …IDictionary<string, ProjectProperty> allEvaluatedPropertiesWithNoBackingXmlAndNoDuplicates = new D… in AllEvaluatedProperties()
1853 foreach (ProjectProperty property in nonImportedProperties) in AllEvaluatedProperties()
1855 ProjectProperty propertyFromAllEvaluated = null; in AllEvaluatedProperties()
1996 …IDictionary<string, ProjectProperty> allEvaluatedPropertiesWithNoBackingXmlAndNoDuplicates = new D… in AllEvaluatedPropertiesAndImports()
2015 foreach (ProjectProperty property in nonImportedProperties) in AllEvaluatedPropertiesAndImports()
2017 ProjectProperty propertyFromAllEvaluated = null; in AllEvaluatedPropertiesAndImports()
2058 ProjectProperty property = project.SetProperty("p", "1"); in AllEvaluatedPropertiesSetProperty()
2135 foreach (ProjectProperty property in project.AllEvaluatedProperties) in AllEvaluatedListsExceptPropertiesAreEmpty()
4617 public bool Equals(ProjectProperty x, ProjectProperty y) in Equals()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DMicrosoft.Build.cs435 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
454 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
486 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
488 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
494 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
502 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
655 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
657 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
665 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
669 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.2/
H A DMicrosoft.Build.cs435 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
454 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
486 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
488 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
494 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
502 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
655 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
657 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
665 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
669 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DMicrosoft.Build.cs435 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
454 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
486 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
488 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
494 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
502 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
655 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
657 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
665 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
669 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7/
H A DMicrosoft.Build.cs441 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
458 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
491 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
493 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
499 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
507 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
654 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
656 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
664 …public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { [System.Diagnostics.Debug…
670 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DMicrosoft.Build.cs435 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
454 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
486 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
488 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
494 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
502 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
655 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
657 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
665 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
669 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5/
H A DMicrosoft.Build.cs435 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
454 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
486 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
488 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
494 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
502 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
655 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
657 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
665 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
669 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A DMicrosoft.Build.cs435 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
454 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
486 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
488 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
494 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
502 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
655 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
657 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
665 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
669 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/
H A DMicrosoft.Build.cs441 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
458 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
491 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
493 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
499 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
507 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
654 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
656 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
664 …public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { [System.Diagnostics.Debug…
670 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()
/dports/devel/msbuild/msbuild-0.06/build/LegacyPackages/14.0/Microsoft.Build/
H A DMicrosoft.Build.cs484 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvalu…
501 …public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properti…
534 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } in GetProperty()
536 …public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) … in GetPropertyValueEscaped()
542 … public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } in RemoveProperty()
550 …public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue… in SetProperty()
698 …public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.Proje… class
700 internal ProjectProperty() { } in ProjectProperty() method in Microsoft.Build.Evaluation.ProjectProperty
708 …public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { [System.Diagnostics.Debug…
714 …stem.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.Proj… in Equals()

12