-
Notifications
You must be signed in to change notification settings - Fork 74
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
AssemblyBuilder.Save in .NET 8 #61
Comments
If this ships I will definitely plug it in 👍 |
Looks like it is in .net 9.0 preview |
If it's still there when .NET 9 releases, I'll integrate it! |
.NET 9 seems to have shipped with a way to save assemblies. I haven't tried it yet, but the API looks like what we need. Some work is required to integrate it. In particular, the compiler assumes that the user will figure out how to supply all the imports and accept the exports, but when saving a DLL, people will expect to have generated types to cover both sides of that. So, the beginning and end of the compilation process will need some updates. I'll work on this when I have time, but PRs are always welcome 😇 |
Prototype: https://github.com/dotnet/runtimelab/tree/feature/assembly-builder-save
Issue: dotnet/runtime#15704 (comment)
Hint: Once this is implemented, change the Readme accordingly
The text was updated successfully, but these errors were encountered: