Lines Matching refs:ProjectItemInstance
26 using TaskItem = Microsoft.Build.Execution.ProjectItemInstance.TaskItem;
29 using ProjectItemInstanceFactory = Microsoft.Build.Execution.ProjectItemInstance.TaskItem.ProjectIt…
47 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoTaskItems0()
58 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoTaskItems1()
69 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoTaskItems2()
85 List<ProjectItemInstance> ig = new List<ProjectItemInstance>(); in ExpandAllIntoTaskItems3()
86 ig.Add(new ProjectItemInstance(project, "Compile", "foo.cs", project.FullPath)); in ExpandAllIntoTaskItems3()
87 ig.Add(new ProjectItemInstance(project, "Compile", "bar.cs", project.FullPath)); in ExpandAllIntoTaskItems3()
89 List<ProjectItemInstance> ig2 = new List<ProjectItemInstance>(); in ExpandAllIntoTaskItems3()
90 ig2.Add(new ProjectItemInstance(project, "Resource", "bing.resx", project.FullPath)); in ExpandAllIntoTaskItems3()
92 … ItemDictionary<ProjectItemInstance> itemsByType = new ItemDictionary<ProjectItemInstance>(); in ExpandAllIntoTaskItems3()
96 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoTaskItems3()
117 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoTaskItems4()
141 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandPropertiesIntoProjectPropertyInstances()
144 …IList<ProjectItemInstance> itemsOut = expander.ExpandIntoItemsLeaveEscaped("foo$(a);$(b);$(c);$(d"… in ExpandPropertiesIntoProjectPropertyInstances()
158 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandEmptyPropertyExpressionToEmpty()
175 …IList<ProjectItemInstance> items = expander.ExpandIntoItemsLeaveEscaped("@(i)", itemFactory, Expan… in ExpandItemVectorsIntoProjectItemInstancesSpecifyingItemType()
195 …IList<ProjectItemInstance> items = expander.ExpandIntoItemsLeaveEscaped("@(i)", itemFactory, Expan… in ExpandItemVectorsIntoProjectItemInstancesWithoutSpecifyingItemType()
215 …IList<ProjectItemInstance> itemsTrue = expander.ExpandIntoItemsLeaveEscaped("@(i->AnyHaveMetadataV… in ExpandItemVectorFunctionsAnyHaveMetadataValue()
221 …IList<ProjectItemInstance> itemsFalse = expander.ExpandIntoItemsLeaveEscaped("@(i->AnyHaveMetadata… in ExpandItemVectorFunctionsAnyHaveMetadataValue()
241 …IList<ProjectItemInstance> itemsTrue = expander.ExpandIntoItemsLeaveEscaped("@(i->Metadata('Meta0'… in ExpandItemVectorFunctionsGetDirectoryNameOfMetadataValueDistinct()
247 …IList<ProjectItemInstance> itemsDir = expander.ExpandIntoItemsLeaveEscaped("@(i->Metadata('Meta9')… in ExpandItemVectorFunctionsGetDirectoryNameOfMetadataValueDistinct()
268 …IList<ProjectItemInstance> itemsTrue = expander.ExpandIntoItemsLeaveEscaped("@(i->Metadata('Meta0'… in ExpandItemVectorFunctionsItemSpecModifier()
653 …IList<ProjectItemInstance> itemsTrue = expander.ExpandIntoItemsLeaveEscaped("@(i->'%(Meta0)'->'%(D… in ExpandItemVectorFunctionsItemSpecModifier2()
691 …IList<ProjectItemInstance> itemsTrue = expander.ExpandIntoItemsLeaveEscaped("@(i->Metadata('Meta0'… in ExpandItemVectorFunctionsGetDirectoryNameOfMetadataValue()
711 …IList<ProjectItemInstance> items = expander.ExpandIntoItemsLeaveEscaped("@(i->Metadata('Meta10')->… in ExpandItemVectorFunctionsMetadataValueMultiItem()
731 …IList<ProjectItemInstance> items = expander.ExpandIntoItemsLeaveEscaped("@(i->ClearMetadata())", i… in ExpandItemVectorFunctionsClearMetadata()
742 private Expander<ProjectPropertyInstance, ProjectItemInstance> CreateItemFunctionExpander() in CreateItemFunctionExpander()
751 ItemDictionary<ProjectItemInstance> ig = new ItemDictionary<ProjectItemInstance>(); in CreateItemFunctionExpander()
755 …ProjectItemInstance pi = new ProjectItemInstance(project, "i", "i" + n.ToString(), project.FullPat… in CreateItemFunctionExpander()
782 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in CreateItemFunctionExpander()
791 private Expander<ProjectPropertyInstance, ProjectItemInstance> CreateExpander() in CreateExpander()
798 ItemDictionary<ProjectItemInstance> ig = new ItemDictionary<ProjectItemInstance>(); in CreateExpander()
799 ProjectItemInstance i0 = new ProjectItemInstance(project, "i", "i0", project.FullPath); in CreateExpander()
800 ProjectItemInstance i1 = new ProjectItemInstance(project, "i", "i1", project.FullPath); in CreateExpander()
804 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in CreateExpander()
1183 … List<ProjectItemInstance> intermediateAssemblyItemGroup = new List<ProjectItemInstance>(); in CreateComplexPropertiesItemsMetadata()
1184 ProjectItemInstance i1 = new ProjectItemInstance(project, "IntermediateAssembly", in CreateComplexPropertiesItemsMetadata()
1188 ProjectItemInstance i2 = new ProjectItemInstance(project, "IntermediateAssembly", in CreateComplexPropertiesItemsMetadata()
1193 List<ProjectItemInstance> contentItemGroup = new List<ProjectItemInstance>(); in CreateComplexPropertiesItemsMetadata()
1194 …ProjectItemInstance i3 = new ProjectItemInstance(project, "Content", "splash.bmp", project.FullPat… in CreateComplexPropertiesItemsMetadata()
1198 List<ProjectItemInstance> resourceItemGroup = new List<ProjectItemInstance>(); in CreateComplexPropertiesItemsMetadata()
1199 …ProjectItemInstance i4 = new ProjectItemInstance(project, "Resource", "string$(p).resx", project.F… in CreateComplexPropertiesItemsMetadata()
1202 …ProjectItemInstance i5 = new ProjectItemInstance(project, "Resource", "dialogs%253b.resx", project… in CreateComplexPropertiesItemsMetadata()
1206 List<ProjectItemInstance> contentItemGroup2 = new List<ProjectItemInstance>(); in CreateComplexPropertiesItemsMetadata()
1207 …ProjectItemInstance i6 = new ProjectItemInstance(project, "Content", "about.bmp", project.FullPath… in CreateComplexPropertiesItemsMetadata()
1211 …ItemDictionary<ProjectItemInstance> secondaryItemsByName = new ItemDictionary<ProjectItemInstance>… in CreateComplexPropertiesItemsMetadata()
1235 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoTaskItemsComplex()
1267 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringComplexPiecemeal()
1320 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringEmpty()
1346 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringComplex()
1368 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringLeaveEscapedComplex()
1390 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringExpectIdenticalReference()
1423 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringExpanderOptions()
1444 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in ExpandAllIntoStringListLeaveEscapedComplex()
1486 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyInvalidPrefixSpecialCase()
1502 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in Regress692569()
1520 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyInvalidPrefixError()
1538 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyInvalidPrefixError2()
1552 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyString()
1573 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyBinary()
1597 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyDWord()
1619 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyExpandString()
1640 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyQWord()
1661 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in RegistryPropertyMultiString()
1758 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionNullArgument()
1774 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionNullReturn()
1790 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionNoArguments()
1806 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionNoArgumentsTrim()
1822 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyGet()
1838 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyManualGet()
1854 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyNoArgumentsConcat()
1870 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgument()
1886 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgumentWithSpaces()
1903 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyPathRootSubtraction()
1920 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgumentExpandedProperty()
1937 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgumentBooleanReturn()
1955 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgumentNestedAndChainedFunction()
1973 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgumentChained()
1989 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionPropertyWithArgumentNested()
2004 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionGenericListReturn()
2020 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionArrayReturn()
2038 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionDictionaryReturn()
2056 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionArrayReturnManualSplitter()
2073 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInCondition()
2091 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid1()
2110 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid2()
2128 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid3()
2146 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid4()
2164 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid5()
2181 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid6()
2198 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid7()
2214 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalid8()
2228 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionInvalidNoMetadataFunctions()
2244 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionNoCollisionsOnType()
2263 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodMakeRelative()
2280 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethod1()
2296 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionConstructor1()
2320 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionConstructor2()
2340 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyStaticFunctionAllEnabled()
2363 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyStaticFunctioLocatedFromAssemblyWithNamespaceName()
2392 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyStaticFunctionUsingNamespaceNotFound()
2426 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted1()
2442 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted1Spaces()
2460 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted1Spaces2()
2478 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted1Spaces3()
2494 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted2()
2510 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted3()
2525 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodQuoted4()
2541 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodNested()
2559 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodRegex1()
2584 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodChained()
2600 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionGetFolderPath()
2635 var expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(pg); in PropertyFunctionRuntimeInformation()
2653 var expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(pg); in IsOsPlatformShouldBeCaseInsensitiveToParameter()
2670 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodEnumArgument()
2693 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodDirectoryNameOfFileAbove()
2727 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodGetPathOfFileAbove()
2770 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodGetPathOfFileAboveFileNameOnly()
2786 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodGetCultureInfo()
2805 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodArithmeticAddInt32()
2820 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodArithmeticAddDouble()
2835 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionValueOrDefault()
2856 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionValueOrDefaultFromEnvironment()
2879 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionDoesTaskHostExist()
2896 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionDoesTaskHostExist_Whitespace()
2908 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionNormalizeDirectory()
2933 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionDoesTaskHostExist_Error()
2956 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionDoesTaskHostExist_Evaluated()
2980 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionDoesTaskHostExist_NonexistentTaskHost()
3006 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodFileAttributes()
3032 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionStaticMethodIntrinsicMaths()
3106 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertySimpleSpaced()
3123 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionGetRegitryValue()
3146 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionGetRegitryValueDefault()
3169 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionGetRegistryValueFromView1()
3192 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionGetRegistryValueFromView2()
3219 List<ProjectItemInstance> ig = new List<ProjectItemInstance>(); in PropertyFunctionConsumingItemMetadata()
3221 ig.Add(new ProjectItemInstance(project, "Compile", "fOo.Cs", project.FullPath)); in PropertyFunctionConsumingItemMetadata()
3223 … ItemDictionary<ProjectItemInstance> itemsByType = new ItemDictionary<ProjectItemInstance>(); in PropertyFunctionConsumingItemMetadata()
3226 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionConsumingItemMetadata()
3264 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in Medley()
3519 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionEnsureTrailingSlash()
3545 …pander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstan… in PropertyFunctionWithNewLines()
3707 var expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(properties); in TestPropertyFunction()