Tagged Questions
The rebasing tag has no wiki summary.
7
votes
2answers
2k views
.NET assemblies and DLL rebasing
According to this article rebasing is not necessary for .NET assemblies due to JIT compilation of the code. The article states:
"JIT-compiled code does not have a rebasing problem since the ...
3
votes
1answer
175 views
How to measure the effect of correctly rebasing .NET assemblies before NGen?
Our application has a lot of .NET assemblies, which up until now, has not been deployed with NGen-scripts, so they are always JITted at runtime.
Since our application is typically deployed to a ...
2
votes
3answers
87 views
Attempts at Dll rebasing in .net4 don't appear to work
I'm experimenting with Dll rebasing on a small test solution running on .net4 consisting of one small .exe and three small .Dlls. The assembly references have been set up correctly and the program ...
2
votes
1answer
514 views
.NET assembly cache / ngen / jit image warm-up and cool-down behavior
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 image address rebasing.
...
2
votes
1answer
468 views
Function pointer incorrect in Visual Studio 2005, code starts at 1 byte offset
The code in question hooks into explorer.exe but was crashing on entry to the callback function:
Unhandled exception at 0x60055b50 (redacted.dll) in explorer.exe: 0xC0000005: Access violation writing ...
1
vote
2answers
101 views
Dll base address
I've got a small test solution with one exe and three Dlls, the exe calling the three Dlls once each.
I've set the Build->Advanced->DLL Base Address setting to 0x41000000, 0x42000000 and 0x43000000 ...
0
votes
3answers
1k views
Theme Image URL Rebasing asp.net
I am implementing themes to enable an existing website to be rebranded (logos, colors, images etc.) depending on the requesting URL. I understand how to do that and have got the skins working fine ...
0
votes
2answers
267 views
How do you rebase hyperlinks and content in an ASP.NET page?
I have an ASP.NET page to handle "404 page not found" it's setup by configuring the <customErrors> section in my web.config file and setting the custom error page for 404 errors in IIS manager.
...
0
votes
1answer
1k views
If I want to rebase my DLL's, how do I go about doing it?
This is a continuation of this question.
I'm in the process of testing whether rebasing the .NET DLLs, and NGENning them will provide me with more shared code in memory on terminal servers.
However, ...