Questions tagged [aot]

In Microsoft Dynamics AX, application objects are defined in the Application Object Tree (AOT) and are instantiated at runtime. The AOT also contains application resources, references, and documentation. This section describes the AOT and its contents, how to use the AOT to define application objects, and how to import and export definitions of application objects.

In Microsoft Dynamics AX, application objects are defined in the Application Object Tree (AOT) and are instantiated at runtime. The AOT also contains application resources, references, and documentation. This section describes the AOT and its contents, how to use the AOT to define application objects, and how to import and export definitions of application objects.

More information on MSDN:

http://msdn.microsoft.com/en-us/library/gg840931.aspx

349 questions
4
votes
1 answer

Rollup commonjs

I am working on an Angular2 project. I went through Angular2 aot documents and I was able to generate ngFactory files. I used rollup js as suggested in the docs. I have some non-es6 npm packages. I have used require to load the non-es6 packages.…
prabha pattabiraman
  • 203
  • 1
  • 2
  • 10
4
votes
2 answers

How can I generate any generic type at runtime on AOT platforms?

I need to generate generic types at runtime on AOT platforms. I know of a "workaround" that hints the compiler to generate a specific generic class by creating a dummy method in the code: public void DoDummy(){ var a1 = new…
Rafael
  • 55
  • 3
4
votes
0 answers

Running Instruments on a Xamarin.Mac application bundle

@miguel.de.icaza blogged about using Instruments to profile Mac apps built with Mono. However, that blog post was about executables run from the command line, not about .app bundles. The key point in the above blog post is that the app must be…
bright
  • 4,700
  • 1
  • 34
  • 59
4
votes
1 answer

MonoTouch debug not building with ServiceStack.Text (AOT error)?

I have just started using the ServiceStack.Text.MonoTouch.dll in my MonoTouch solution. Everything compiles and runs in the simulator, but as soon as I try to run a Debug build on the phone the compilation process dies with the following…
Dylan
  • 1,919
  • 3
  • 27
  • 51
4
votes
1 answer

Ran out of trampolines of type 2

We develop our game with Unity 3D for iOS. Recently I merged my branch of code with another branch and run it with Unity editor. It works well. But when I ran app on iPad it crashes with message "Ran out of trampolines of type 2 in…
ghost3D
  • 39
  • 1
  • 4
4
votes
1 answer

Is there any documentation for ServiceStack.Text.JSConfig with regard to MonoTouch AOT helpers?

Is there any documentation for ServiceStack.Text.JSConfig with regard to MonoTouch AOT helpers? I Found this... ServiceStack JIT Error on MonoTouch and I've had a look at the code but there are no comments and frankly it is a bit mysterious. From…
Felix
  • 1,346
  • 1
  • 12
  • 25
4
votes
1 answer

Create AOT checklist for IOS (ExecutionEngineException)

First of all, I've posted a similar question on answers.unity.com and after realized it's affect a way broader community... so please did not take this as a crossposting. Deploying C# code to IOS recently became a nightmare for me. All started with…
g.pickardou
  • 32,346
  • 36
  • 123
  • 268
3
votes
1 answer

MonoTouch JIT Error in Release mode on Linq Method

I currently have some code as shown below that uses Linq to organize some IEnumerables for me. When executing this code on the device in release mode (iOS 5.0.1, MonoTouch 5.0.1, Mono 2.10.6.1) I get the exception Attempting to JIT compile method…
pseabury
  • 1,615
  • 3
  • 16
  • 30
3
votes
2 answers

JIT compile error with protobuf-net on MonoTouch/iOS device (iPhone/iPad)

I am using protobuf-net v2 beta r450 (binary distribution) and building a serialization assembly ahead of time using the technique described…
t9mike
  • 1,546
  • 2
  • 19
  • 31
3
votes
2 answers

MonoTouch does not support OpenAsync method for opening a web service connection when running on the device (works on the simulator)

I am using MonoTouch 4.0.7 with MonoDevelop 2.8 Beta 2 and XCode 4 (by the way someone know how to get MonoTouch 4.2 version?). We are trying to call a .Net web service method through classes generated by the slsvcutil proxy generator. When…
Nicolas
  • 41
  • 3
3
votes
1 answer

Dotnet ahead-of-time: PublishReadyToRun vs PublishAot vs RunAOTCompilation

The recent dotnet version (dotnet 6 & 7) has an ahead-of-time (AOT) compilation feature. According to the official documentation, there are different approaches to achieving this. Native AOT Deployment
Rahul
  • 2,431
  • 3
  • 35
  • 77
3
votes
3 answers

Monotouch blows up on LINQ query when using device builds

Here's the error I get: | mscorlib | | Attempting to JIT compile method 'System.Linq.OrderedEnumerable`1:GetEnumerator ()' while running with --aot-only. From what I've read it looks like the compiler doesn't include a method in this case…
Chuck Pinkert
  • 1,325
  • 1
  • 14
  • 24
3
votes
1 answer

Cannot find module when importing with SystemJs in Angular

I'm trying to import an external module with SystemJs in Angular doing import { System } from 'systemjs'; declare const SystemJS: System; ... SystemJs.import('./assets/example/example.js').then(m=>{ console.log('the module is',…
caraie
  • 1,094
  • 7
  • 18
3
votes
2 answers

Typescript throws error when property p does not exist on type one of the OR-ed two classes

I have a component class, where I have a class property renderContent that can be one of the given 2 types classes/models LessonPageType and TaskPageType based on the value I passed as @Input(). Below is my class component code: import…
Yashwardhan Pauranik
  • 5,370
  • 5
  • 42
  • 65
3
votes
0 answers

Angular 7 Creating dynamic modules with compileModuleAndAllComponentsAsync aot build issue

Problem : I have to render a dynamic html which generates at run-time as a string, so for that purpose I've used dynamic components approach as innerHTML just not cater angular attributues like *ngIf, formGroup, router-link etc, but getting…
talhahsn
  • 31
  • 2