Tagged Questions

0
votes
1answer
22 views

Does it make sense to distribute pre-NGEN-ed assemblies?

I've found a few interesting links on using NGEN as a final step in an installer from this post. Is there a reason it is preferred to NGEN your assemblies at setup time, instead of …
10
votes
5answers
890 views

Have you ever used ngen.exe?

Has anybody here ever used ngen? Where, why? Was there any performance improvement?
5
votes
5answers
489 views

Does it help to use NGEN ?

Is it better to use NGEN an ASP.NET application when we know it is not going to change much ? Or is the JIT good enough ? Thanks, Chak.
3
votes
0answers
65 views

How to debug a WER minidump of an “ngen”ed image

When ngen is executed on a .NET managed application at installation time, and a crash dump is retrieved from Windows Error Reporting for the app, how can you use it to see a stack …
1
vote
1answer
110 views

Step-by-step ngen with Wix 3.0

We use Wix to build an installer for our .NET application and are just in the process of porting to Wix 3.0. Our application includes several .NET assemblies (as is the way with . …
1
vote
1answer
107 views

.NET assembly cache / ngen / jit image warm-up and cool-down behavior

Hi, I have an Input Method (IME) program built with C#.NET 2.0 DLL through C++/CLI. Since an IME is always attaching to another application, the C#.NET DLL seems not able to avoid …
3
votes
3answers
610 views

Need help getting NGen back into working condition.

NGen is unhappy on my computer, and i can't find a way to get a deep understanding of what is going wrong. After every startup, ngen logs this message: .NET Runtime Optimizati …
3
votes
3answers
232 views

NGen and Gacutil best practices

Hi there, This is my first post, so please forgive me if this isn't written well. I've been working on a WinForms application which has about 5 referenced assemblies - written by …
3
votes
4answers
377 views

Is it possible to use NGen with ClickOnce deployment?

Is it possible to use NGen with ClickOnce deployment?
4
votes
4answers
296 views

How do I run nGen at the end of the installation (MSI)?

I would like to execute nGen at the end of my installation simply to improve the perceived performance of the first startup of my application. How could I do that? Is there are som …
1
vote
1answer
137 views

.NET JIT’ed assemblies in sharable pages

When running a .NET 2.0 WinForms app in a Terminal Services environment, I'm seeing some unexpected results that I can't quite explain. Everything I have read has indicated that J …
2
votes
5answers
283 views

Generating Native Images outside the Cache

I would like to use NGEN.EXE in order to generate native images of my assemblies before I create my installer. I am hoping this will keep my binaries Reflector-proof. Am I correct …
1
vote
1answer
997 views

Where can I download the latest ngen.exe?

I am using ngen.exe (the .Net Native Image Generator) version 2.0.50727.312. Is this the latest version? If not, where can I download the latest version? This page on msdn... http …
4
votes
1answer
358 views

Is there any way to change the .NET JIT compiler to favor performance over compile time?

I was wondering if there's any way to change the behavior of the .NET JIT compiler, by specifying a preference for more in-depth optimizations. Failing that, it would be nice if i …
2
votes
2answers
168 views

Can you use the Phoenix compiler as a more powerful NGEN?

In case you don't know of Phoenix, it's a compiler framework from Microsoft that's apparantly going to be the foundation of all their new compilers. It can read in code from CIL, x …