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
0
votes
0 answers

AOT Compilation Error Angular2

Hi I am having trouble compiling Angular2 project using AoT. I referred to the Angular2 Cookbook here. But it's spitting out tons of errors. What am I doing wrong? These are errors I am getting. Error at…
Lea
  • 1,245
  • 5
  • 22
  • 31
0
votes
1 answer

Angular2 webpack building UserError

I made an application with a webpack seed but now that I want to compile in aot for prod I got a UserError.Error and don't know how to fix it This happens after angular compil during webpack building. This the error : Starting compilation using the…
0
votes
0 answers

Is Angular 2 AOT compilation and tree shaking with rollup slow?

I'm going through the angular 2 deployment documentation on AOT and it recommends making copies of the JIT compilation files and maintaining the AOT and JIT files side by side. Ideally I would be able to develop with the AOT / Rollup compilation…
Ole
  • 41,793
  • 59
  • 191
  • 359
0
votes
0 answers

angular2 aot with webpack generates 50 mb of app.bundle.js file

I am converting my angular2 app in aot compilation, We have around 8 modules and each modules have an average of 10-12 components. When i am creating build for prod, its generating 53mb of app.bundle.js file. This is really huge. According to me,…
0
votes
0 answers

Angular CLI AOT build error cache?

I have an Angular (2) app that is failing to build using the AOT compiler. What's strange is I nuked the component with the error and rebuilt from the ground up adding one line at a time so I could trace the issue (the AOT error is completely…
Mike Linden
  • 143
  • 13
0
votes
1 answer

X++ Compute columns

I try recreate SQL view in AOT and I need add compute column which reference view (FISCALCALENDARFLATTENEDVIEW). In the class I cannot retrieved fields for this view. Problem is with "sGREGORIANDATE = " line where I specify a fieldStr(), cannot do…
Jakub
  • 21
  • 4
0
votes
0 answers

Angular 2 AOT: Getting lot of errors in index.d.ts

I have an angular application currently configured with JIT, and it's working fine. I tried configuring it to work with AOT (Ahead of time) compilation. Here's my work till now: Here is my tsconfig-aot.ts: { "compileOnSave": true, …
Kush Grover
  • 363
  • 1
  • 6
  • 16
0
votes
1 answer

AOT - Lazy loaded routes are not being compiled

Does anyone know why when I ngc my project, the lazy loaded modules used in the project are not being compiled/generated? This is the lazy loaded route: children: [ … { path: "my-apps", loadChildren:…
Alvaro Contreras
  • 313
  • 3
  • 13
0
votes
1 answer

Angular2 host binding issue in AoT compilation

Using the latest Angular2 Webpack Starter (v5.4.1. / Angular 2.4.6) I'm trying to build my code with the AoT compiler. In a custom form input component I have this host binding @Component({ selector: 'my-selector', templateUrl:…
Jan B.
  • 6,030
  • 5
  • 32
  • 53
0
votes
2 answers

Dynamic angular 2 expressions bind to view

I am fetching part of the page from some service. How can I achieve that angular expression or router staff working as dynamic content? Controller.ts variable = 'some text'; dynamicContent =' {{variable}} Or
user2771738
  • 913
  • 11
  • 31
0
votes
1 answer

Angular Aot : app folder is not generated

I have implemented aot in my Angular 2 project, resolved all errors an finally my "node_modules/.bin/ngc" -p tsconfig-aot.json run successfully but I see only node_modules folder in aot folder and no app folder in it. So where can I get…
sudhir
  • 1,387
  • 3
  • 25
  • 43
0
votes
1 answer

Angular 2 - AoT compiler

I am learning the Angular 2, following this https://angular.io/docs/ts/latest/cookbook/aot-compiler.html And use this command to compile my app. "node_modules/.bin/ngc" -p tsconfig-aot.json However, I got just node_modules generated, nothing from…
khoailang
  • 725
  • 1
  • 15
  • 32
0
votes
1 answer

How to choose between IKVM static and dynamic modes?

I'm deploying some Java libraries in my .NET application. Should I convert the Java libraries into DLLs with ikvmc, or should I use the dynamic features to do the conversion at runtime? I expect that using ikvmc would cut down on initial load of the…
Patrick Linskey
  • 1,124
  • 1
  • 13
  • 24
0
votes
2 answers

Angular AOT maturity

I just want to know how mature is the AOT process in order to use it or try different aproach. I'm asking because I'm having lot of trouble trying to apply the example https://angular.io/docs/ts/latest/cookbook/aot-compiler.html to my app. I'm…
0
votes
1 answer

Angular2 AoT 404 when loading compiled scripts

I'm working on an Angular2 (latest version) project within Visual Studio 2015 Community environment. I have set the settings for the AoT and I'm outputting to /aot folder. When I run the project, I get the following error in my browser: Failed to…
Nodios
  • 439
  • 6
  • 18