src/Tasks/Microsoft.NET.Build.Tasks/GenerateShims.cs [57:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[Required]
public string PackagedShimOutputDirectory { get; set; }
///
/// The RuntimeIdentifiers that shims will be generated for.
///
[Required]
public ITaskItem[] ShimRuntimeIdentifiers { get; set; }
///
/// Path of generated shims. metadata "ShimRuntimeIdentifier" is used to map back to input ShimRuntimeIdentifiers.
///
[Output]
public ITaskItem[] EmbeddedApphostPaths { get; private set; }
protected override void ExecuteCore()
{
var embeddedApphostPaths = new List();
foreach (var runtimeIdentifier in ShimRuntimeIdentifiers.Select(r => r.ItemSpec))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
src/Tasks/Microsoft.NET.Build.Tasks/GetEmbeddedApphostPaths.cs [20:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[Required]
public string PackagedShimOutputDirectory { get; set; }
///
/// The RuntimeIdentifiers that shims will be generated for.
///
[Required]
public ITaskItem[] ShimRuntimeIdentifiers { get; set; }
///
/// Path of generated shims. metadata "ShimRuntimeIdentifier" is used to map back to input ShimRuntimeIdentifiers.
///
[Output]
public ITaskItem[] EmbeddedApphostPaths { get; private set; }
protected override void ExecuteCore()
{
var embeddedApphostPaths = new List();
foreach (var runtimeIdentifier in ShimRuntimeIdentifiers.Select(r => r.ItemSpec))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -