-
-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Is there any plan to release Theraot 4.0.0 nuget? #194
Comments
Just curious what is the reason you need this library today ? |
I have old software that uses proprietary libraries to communicate with a device. The manufacturer no longer exists and it is not possible to have the updated library that supports .net 4.0 and higher. |
You can run almost any .NET 3.5 program over CLR 4.0 using application manifest. What about option to decompile and compile with a newer framework ? |
I did not know this possibility. Can you give more documentation about it?
Unfortunately I'm alone, the library is large, obfuscated and mixes native and managed code. It would take years to convert. |
Sure Myapp.exe.config <configuration>
<startup>
<supportedRuntime version="v4.0"/>
If you want you can also have a falllback to 3.5 in case 4.0+ is not present
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration> |
We have around 800-1000 XP devices left per client (10 clients around the world). Most of them are gen1/2 Intel meaning it need full replacement (cpu + mobo + ide->sata hdd + vga->dvi say 250$) to upgrade to new Windows version. Each device is connected to peripheral hardware of the same era with proprietary kernel driver (not supported by vendor anymore, so no builds for recent Windows), 300$ per unit compatible with win10. |
@OwnageIsMagic What is the compiler are you using ? |
Yes, I actually use NET8 RC SDK for dev builds and latest stable in CI. But it doesn't matter since once compiled to IL and packed it's indistinguishable from code compiled with the old native What can we actually do with source generators is automatic placement of |
No description provided.
The text was updated successfully, but these errors were encountered: