Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2021-06-04 17:30:09 +0300
committerGitHub <noreply@github.com>2021-06-04 17:30:09 +0300
commit21df7dbbf881507c98026c1b9e7532303b3c0a06 (patch)
tree85ca4107b5e3a0e9e455108bc98ba1feba1603ed /test/Mono.Linker.Tests.Cases
parenta3f68c6510677317999de1f05d2e10ebfb903abe (diff)
Fix order of custom steps (#2082)
Diffstat (limited to 'test/Mono.Linker.Tests.Cases')
-rw-r--r--test/Mono.Linker.Tests.Cases/Extensibility/CustomStepsCanShareState.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Mono.Linker.Tests.Cases/Extensibility/CustomStepsCanShareState.cs b/test/Mono.Linker.Tests.Cases/Extensibility/CustomStepsCanShareState.cs
index 94771aaec..a2920e55f 100644
--- a/test/Mono.Linker.Tests.Cases/Extensibility/CustomStepsCanShareState.cs
+++ b/test/Mono.Linker.Tests.Cases/Extensibility/CustomStepsCanShareState.cs
@@ -4,8 +4,8 @@ using Mono.Linker.Tests.Cases.Expectations.Metadata;
namespace Mono.Linker.Tests.Cases.Extensibility
{
[SetupCompileBefore ("SharedCustomSteps.dll", new[] { "Dependencies/CustomStepsWithSharedState.cs" }, new[] { "illink.dll", "Mono.Cecil.dll", "netstandard.dll" })]
- [SetupLinkerArgument ("--custom-step", "SharedStateHandler2,SharedCustomSteps.dll")]
[SetupLinkerArgument ("--custom-step", "SharedStateHandler1,SharedCustomSteps.dll")]
+ [SetupLinkerArgument ("--custom-step", "SharedStateHandler2,SharedCustomSteps.dll")]
public class CustomStepsCanShareState
{
public static void Main ()