I want to run the freeware version of codesmith (2.6, that has been built on .net framework 1.1) on Windows Server 2008 r2 64bit

There is a way to force it run under the .net framework 4.0?

The .net 1.1 installer says there are compatibility issues on my os

edit: I wanted to know if there is a way to decompile/recompile , like those hacks to add x64 compatibility to .net apps if it was flagged as 32bit only in visual studio

link|improve this question

Unless you're doing something as crazy as developing on the actual server, then cant you do the codegen on a workstation or for .net 1.1 in a virtual machine if need be. – user53791 Jan 10 '11 at 11:47
No, i need it once, and also the workstation it's windows 7 x64 that has the same incompatibilities. – Magnetic_dud Jan 10 '11 at 11:57
@Magnetic_dud: Have you tried XP Mode for Windows 7? – 0xA3 Jan 10 '11 at 11:58
Actually I don't like the XP mode, i feel it's an ugly hack based on hyperv+rdp. I prefer VirtualBox :P – Magnetic_dud Jan 10 '11 at 12:01
4  
@Magnetic_dud Ugly hack! You're the one trying to get a 10 year old copy of CodeSmith to work :P – chibacity Jan 10 '11 at 12:03
show 1 more comment
feedback

3 Answers

I'd highly recommend updating to the latest version that has been fully tested on the latest editions of Windows 64bit and .NET. Please contact sales/support and we will work with you ;) and help get your templates updated if needed.

Thanks -Blake Niemyjski

link|improve this answer
If I were a professional dev, I would follow that way, because there are lots of new functions, but I am just an hobbyist that needs to run someone else's templates just a few times – Magnetic_dud Mar 23 '11 at 22:10
We work with hobbyist and all developers and there is a way to get it for free ;) Please contact us for more information. We would love to see you on the latest version. – Blake Niemyjski Jul 7 '11 at 17:44
feedback

It is not possible. Dot net 1.1 and 4.0 has many differences. There is a good number of API that has been changed. So, even if you could hack it to run on 4.0, it might be crashing.

link|improve this answer
feedback
up vote 0 down vote accepted

It's possible

Just delete:

<startup>
    <supportedRuntime version="v1.1.4322" />
    <supportedRuntime version="v1.0.3705" />
    <requiredRuntime version="v1.0.3705" />
</startup>

from CodeSmith.exe.config, and it works flawlessly on .net framework 4.0 on x64 :-D

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.