@@ -191,12 +191,18 @@ public static partial class Paths
191
191
public static string OpenJDKInstallDir => GetCachedPath ( ref openJDKInstallDir , ( ) => Path . Combine ( ctx . Properties . GetRequiredValue ( KnownProperties . AndroidToolchainDirectory ) , Defaults . JdkFolder ) ) ;
192
192
public static string OpenJDKCacheDir => GetCachedPath ( ref openJDKCacheDir , ( ) => ctx . Properties . GetRequiredValue ( KnownProperties . AndroidToolchainCacheDirectory ) ) ;
193
193
194
- // .NET 6
194
+ // .NET 6+
195
195
public static string NetcoreAppRuntimeAndroidARM => GetCachedPath ( ref netcoreAppRuntimeAndroidARM , ( ) => GetNetcoreAppRuntimePath ( ctx , "arm" ) ) ;
196
196
public static string NetcoreAppRuntimeAndroidARM64 => GetCachedPath ( ref netcoreAppRuntimeAndroidARM64 , ( ) => GetNetcoreAppRuntimePath ( ctx , "arm64" ) ) ;
197
197
public static string NetcoreAppRuntimeAndroidX86 => GetCachedPath ( ref netcoreAppRuntimeAndroidX86 , ( ) => GetNetcoreAppRuntimePath ( ctx , "x86" ) ) ;
198
198
public static string NetcoreAppRuntimeAndroidX86_64 => GetCachedPath ( ref netcoreAppRuntimeAndroidX86_64 , ( ) => GetNetcoreAppRuntimePath ( ctx , "x64" ) ) ;
199
199
200
+ // CoreCLR
201
+ public static string CoreClrAppRuntimeAndroidARM => GetCachedPath ( ref coreclrAppRuntimeAndroidARM , ( ) => GetCoreClrAppRuntimePath ( ctx , "arm" ) ) ;
202
+ public static string CoreClrAppRuntimeAndroidARM64 => GetCachedPath ( ref coreclrAppRuntimeAndroidARM64 , ( ) => GetCoreClrAppRuntimePath ( ctx , "arm64" ) ) ;
203
+ public static string CoreClrAppRuntimeAndroidX86 => GetCachedPath ( ref coreclrAppRuntimeAndroidX86 , ( ) => GetCoreClrAppRuntimePath ( ctx , "x86" ) ) ;
204
+ public static string CoreClrAppRuntimeAndroidX86_64 => GetCachedPath ( ref coreclrAppRuntimeAndroidX86_64 , ( ) => GetCoreClrAppRuntimePath ( ctx , "x64" ) ) ;
205
+
200
206
public static string MicrosoftNETWorkloadMonoPackageDir => Path . Combine (
201
207
XAPackagesDir ,
202
208
$ "microsoft.net.workload.mono.toolchain.{{0}}.manifest-{ ctx . Properties . GetRequiredValue ( KnownProperties . DotNetMonoManifestVersionBand ) } ",
@@ -242,6 +248,24 @@ static string GetNetcoreAppRuntimePath (Context ctx, string androidTarget)
242
248
) ;
243
249
}
244
250
251
+ static string GetCoreClrAppRuntimePath ( Context ctx , string androidTarget )
252
+ {
253
+ string ? localClrDir = ctx . Properties . GetValue ( KnownProperties . LocalClrDirectory ) ;
254
+ if ( ! String . IsNullOrEmpty ( localClrDir ) ) {
255
+ return Path . Combine ( localClrDir , "runtimes" , $ "android-{ androidTarget } ") ;
256
+ }
257
+
258
+ // TODO: The nuget id and the ref package version are guesses atm, since the CoreCLR packages don't exist yet
259
+ Log . Instance . Todo ( "The nuget id and the ref package version are guesses atm, since the CoreCLR packages don't exist yet" ) ;
260
+ return Path . Combine (
261
+ XAPackagesDir ,
262
+ $ "microsoft.netcore.app.runtime.coreclr.android-{ androidTarget } ",
263
+ ctx . Properties . GetRequiredValue ( KnownProperties . MicrosoftNETCoreAppRefPackageVersion ) ,
264
+ "runtimes" ,
265
+ $ "android-{ androidTarget } "
266
+ ) ;
267
+ }
268
+
245
269
static string EnsureAndroidToolchainBinDirectories ( )
246
270
{
247
271
if ( androidToolchainBinDirectory != null )
@@ -278,6 +302,10 @@ static string GetCachedPath (ref string? variable, Func<string> creator)
278
302
static string ? netcoreAppRuntimeAndroidARM64 ;
279
303
static string ? netcoreAppRuntimeAndroidX86 ;
280
304
static string ? netcoreAppRuntimeAndroidX86_64 ;
305
+ static string ? coreclrAppRuntimeAndroidARM ;
306
+ static string ? coreclrAppRuntimeAndroidARM64 ;
307
+ static string ? coreclrAppRuntimeAndroidX86 ;
308
+ static string ? coreclrAppRuntimeAndroidX86_64 ;
281
309
}
282
310
}
283
311
}
0 commit comments