We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cce702 commit 0320d29Copy full SHA for 0320d29
libraries/tests/e2e/infra-aot/Program.cs
@@ -19,7 +19,13 @@ public static void Main(string[] args)
19
throw new System.ArgumentException("architecture context must be either arm64 or x86_64");
20
}
21
22
- _ = new CoreAotStack(app, $"CoreAotStack-{architecture}", new AotStackProps
+ var id = "CoreAotStack";
23
+ if(architecture == "arm64")
24
+ {
25
+ id = $"CoreAotStack-{architecture}";
26
+ }
27
+
28
+ _ = new CoreAotStack(app, id, new AotStackProps
29
{
30
Architecture = architecture
31
});
0 commit comments