Replies: 2 comments
-
You can organize several C# files into a single assembly (built with |
Beta Was this translation helpful? Give feedback.
-
@iahung2 If what u mean is "i don't want to write the giant .rsp file", it's easy! write a piece of code to build the rsp file for u automatically. |
Beta Was this translation helpful? Give feedback.
-
You can't simply replace
$(CC)
withbflat build-il
like @MichalStrehovsky said on #101 (comment). This will not work. You can't build each individual source file and then link them together to get the final binary, like with C/C++. The building order of source files also matters. Which source files need to be built first, and which source files need to be built later? It will quickly turn into a real mess.I have never had success with @xiaoyuvax's
bflata
, too. Btw, to be able to usebflata
, you will need to have the.csproj
file first. This means you have to develop with .NET SDK first. This is not an option for me, as I don't want to use .NET SDK. I want to only usebflat
. I ended up writing my own giant .rsp file to use withbflat
.Beta Was this translation helpful? Give feedback.
All reactions