The compatibility of the assembly generated by build-il
#153
-
Which version of .NET does it target? Is it compatible the .NET Framework? |
Beta Was this translation helpful? Give feedback.
Answered by
MichalStrehovsky
Jan 25, 2024
Replies: 1 comment
-
It matches the version of bflat - so .NET 8 for latest bflat. If you want to target Framework, you can pass The first argument says: don't use the standard library that comes with bflat, the second argument says "reference the Framework core library". |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It matches the version of bflat - so .NET 8 for latest bflat. If you want to target Framework, you can pass
--stdlib:none -r:C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
tobflat build-il
.The first argument says: don't use the standard library that comes with bflat, the second argument says "reference the Framework core library".