25 references to GetValuesWithMetadata
Microsoft.NET.Build.Tests (19)
DesignTimeBuildTests.cs (1)
180
var valuesWithMetadata = getValuesCommand.
GetValuesWithMetadata
();
GivenFrameworkReferences.cs (2)
867
var resolvedFrameworkReferences = getValuesCommand.
GetValuesWithMetadata
();
1168
var items = from item in command.
GetValuesWithMetadata
()
GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs (1)
37
var (_, metadata) = command.
GetValuesWithMetadata
().Single(i => i.value == runtimeConfigFile.FullName);
GivenThatWeWantToBuildADesktopLibrary.cs (1)
448
var valuesWithMetadata = getValuesCommand.
GetValuesWithMetadata
();
GivenThatWeWantToBuildALibrary.cs (1)
845
var references = command.
GetValuesWithMetadata
();
GivenThatWeWantToBuildASelfContainedApp.cs (4)
177
var runtimePacks = getValuesCommand.
GetValuesWithMetadata
();
324
var targetingPacks = getValuesCommand.
GetValuesWithMetadata
();
340
var runtimePacks = getValuesCommand.
GetValuesWithMetadata
();
503
var itemsWithTargetPaths = command.
GetValuesWithMetadata
();
GivenThatWeWantToBuildAWindowsDesktopProject.cs (1)
847
var packageDownloadValues = getValueCommand.
GetValuesWithMetadata
().Where(kvp => kvp.value == "Microsoft.Windows.SDK.NET.Ref").ToList();
GivenThatWeWantToReferenceAProject.cs (1)
193
var valuesResult = getValuesCommand.
GetValuesWithMetadata
().Select(pair => Path.GetFullPath(pair.value));
GivenThereAreDefaultItems.cs (1)
736
var packageReferences = getValuesCommand.
GetValuesWithMetadata
();
GiventThatWeWantDesignerSupport.cs (1)
81
from item in command.
GetValuesWithMetadata
()
GivenWeWantToRequireWindowsForDesktopApps.cs (3)
275
= from item in filesCopiedToPublishDirCommand.
GetValuesWithMetadata
()
303
from item in publishItemsOutputGroupOutputsCommand.
GetValuesWithMetadata
()
371
from item in publishItemsOutputGroupOutputsCommand.
GetValuesWithMetadata
()
WorkloadTests.cs (2)
78
getValuesCommand.
GetValuesWithMetadata
().Select(valueAndMetadata => (valueAndMetadata.value, valueAndMetadata.metadata["VisualStudioComponentId"]))
82
getValuesCommand.
GetValuesWithMetadata
().Select(valueAndMetadata => (valueAndMetadata.value, valueAndMetadata.metadata["VisualStudioComponentIds"]))
Microsoft.NET.Publish.Tests (5)
FilesCopiedToPublishDirTests.cs (1)
66
var items = from item in command.
GetValuesWithMetadata
()
GivenThatWeWantToPublishAnAotApp.cs (1)
1052
var knownPacks = getKnownPacks.
GetValuesWithMetadata
();
GivenThatWeWantToRunILLink.cs (1)
2302
var knownPacks = getKnownPacks.
GetValuesWithMetadata
();
PublishItemsOutputGroupOutputsTests.cs (1)
66
var items = from item in command.
GetValuesWithMetadata
()
PublishItemsOutputGroupTests.cs (1)
50
var items = from item in command.
GetValuesWithMetadata
()
Microsoft.NET.TestFramework (1)
Commands\GetValuesCommand.cs (1)
147
return
GetValuesWithMetadata
().Select(t => t.value).ToList();