You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: NativeAOT perhaps should work here (ignoring all the MonoAOT settings?), but for now it fails with
395
+
//
396
+
// Microsoft.NET.Sdk.FrameworkReferenceResolution.targets(120,5): error NETSDK1207: Ahead-of-time compilation is not supported for the target framework.
397
+
//
398
+
if(runtime==AndroidRuntime.NativeAOT){
399
+
Assert.Ignore("NativeAOT is currently broken here");
400
+
}
401
+
385
402
varlib1=newXamarinAndroidLibraryProject(){
403
+
IsRelease=isRelease,
386
404
ProjectName="Library1",
387
405
Sources={
388
406
newBuildItem.Source("SomeClass.cs"){
@@ -420,6 +438,7 @@ public class LinkModeFullClass {
420
438
lib1.SetRuntime(runtime);
421
439
422
440
varlib2=newDotNetStandard{
441
+
IsRelease=isRelease,
423
442
ProjectName="LinkTestLib",
424
443
Sdk="Microsoft.NET.Sdk",
425
444
TargetFramework="netstandard2.0",
@@ -446,8 +465,8 @@ public class LinkModeFullClass {
0 commit comments