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 9b6aab8 commit cbda14eCopy full SHA for cbda14e
src/Xamarin.Android.Build.Tasks/Utilities/AssemblyDSOGenerator.cs
@@ -0,0 +1,21 @@
1
+using System.Collections.Generic;
2
+
3
+using Xamarin.Android.Tasks.LLVMIR;
4
+using Xamarin.Android.Tools;
5
6
+namespace Xamarin.Android.Tasks;
7
8
+class AssemblyDSOGenerator : LlvmIrComposer
9
+{
10
+ Dictionary<AndroidTargetArch, List<DSOAssemblyInfo>> assemblies;
11
12
+ public AssemblyDSOGenerator (Dictionary<AndroidTargetArch, List<DSOAssemblyInfo>> dsoAssemblies)
13
+ {
14
+ assemblies = dsoAssemblies;
15
+ }
16
17
+ protected override void Construct (LlvmIrModule module)
18
19
+ throw new System.NotImplementedException();
20
21
+}
0 commit comments