Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.DotNet.SdkCustomHelix.Sdk
/// <summary>
/// MSBuild custom task to create HelixWorkItems given test project publish information
/// </summary>
public class SDKCustomCreateTestWorkItemsWithTestExclusion : Build.Utilities.Task
public class CreateHelixTestWorkItems : Build.Utilities.Task
{
/// <summary>
/// An array of test project workitems containing the following metadata:
Expand Down
6 changes: 3 additions & 3 deletions test/test-runner/TestRunner.targets
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<SDKHelixCustomSdkTaskDll>$(ArtifactsBinDir)HelixTasks\$(Configuration)\HelixTasks.dll</SDKHelixCustomSdkTaskDll>
</PropertyGroup>

<UsingTask TaskName="SDKCustomCreateTestWorkItemsWithTestExclusion" AssemblyFile="$(SDKHelixCustomSdkTaskDll)" TaskFactory="TaskHostFactory" Runtime="NET" />
<UsingTask TaskName="CreateHelixTestWorkItems" AssemblyFile="$(SDKHelixCustomSdkTaskDll)" TaskFactory="TaskHostFactory" Runtime="NET" />
<UsingTask TaskName="TarGzFileCreateFromDirectory" AssemblyFile="$(SDKHelixCustomSdkTaskDll)" TaskFactory="TaskHostFactory" Runtime="NET" />
<UsingTask TaskName="CreateLocalHelixTestLayout" AssemblyFile="$(SDKHelixCustomSdkTaskDll)" TaskFactory="TaskHostFactory" Runtime="NET" />

Expand Down Expand Up @@ -108,15 +108,15 @@
Condition="'@(SDKCustomTestProject)' != ''"
BeforeTargets="CoreTest">

<SDKCustomCreateTestWorkItemsWithTestExclusion
<CreateHelixTestWorkItems
TestProjects="@(SDKCustomTestProject)"
IsPosixShell="$(IsPosixShell)"
TargetRid="$(TargetRid)"
BaseMethodLimit="$(BaseMethodLimit)"
TestArguments="$(SDKCustomTestArgument)"
TestWorkItemTimeout="$(TestWorkItemTimeout)">
<Output TaskParameter="TestWorkItems" ItemName="HelixWorkItem"/>
</SDKCustomCreateTestWorkItemsWithTestExclusion>
</CreateHelixTestWorkItems>
</Target>

</Project>
Loading