Skip to content

Commit 0320d29

Browse files
authored
Update Program.cs
1 parent 7cce702 commit 0320d29

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

libraries/tests/e2e/infra-aot/Program.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ public static void Main(string[] args)
1919
throw new System.ArgumentException("architecture context must be either arm64 or x86_64");
2020
}
2121

22-
_ = new CoreAotStack(app, $"CoreAotStack-{architecture}", new AotStackProps
22+
var id = "CoreAotStack";
23+
if(architecture == "arm64")
24+
{
25+
id = $"CoreAotStack-{architecture}";
26+
}
27+
28+
_ = new CoreAotStack(app, id, new AotStackProps
2329
{
2430
Architecture = architecture
2531
});

0 commit comments

Comments
 (0)