Run the .net framework 1.1 program under .net framework 4.0

I want to run the free version of codemith (2.6, which was built on the .net framework 1.1) on Windows Server 2008 r2 64bit

Is there a way to make it work under the .NET Framework 4.0?

.Net installer 1.1 talks about compatibility issues on my os

edit: I wanted to know if there is a way to decompile / recompile, for example, these hacks in order to add compatibility with x64 in .net applications if it was marked as 32-bit only in visual studio

+3
source share
4 answers

maybe

Just remove:

<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

+3
source

, Windows 64bit .NET. sales/support, ;) .

-

+2

. 1.1 4.0 . API, . , 4.0, .

+1

Windows 8.1 Framework 1.1.

<startup> node , - CodeSmith.exe.config :

<startup>
  <supportedRuntime version="v2.0.50727" />
</startup>

did work on Framework 2.0 without problems, so I was able to make changes to my old project.

+1
source

Source: https://habr.com/ru/post/1784511/


All Articles