Does SF6 support .NET Applications and assemblies? what about the .net framework redistributable? anyone have any experience / problems / solutions they'd like to share?
Announcement
Collapse
No announcement yet.
.NET support
Collapse
This topic is closed.
X
X
-
Re: .NET support
Copy the dotnetfx.exe file from the "Microsoft Visual Studio .NET component update CD" and the compiled EXE of your application into the SF6. Execute the dotnetfx.exe with the action script before the installation and after the restart install your own EXE file into the %AppDir% directory.
It is an easy solution.
Sorry my poor English...
-
Re: .NET support
Hello Chen Wei,
It's an example action script (but not official...):
Read from Registry(%DotNetInstall% = HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramewor k\InstallRoot)
IF (%DotNetInstall% <> "")
Show Message Box(Installed in the %DotNetInstall% directory.)
END IF
IF (%DotNetInstall% = "")
Show Message Box(.NET Framework not found.)
END IF
Comment
Comment