You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a limitation of the current implementation (I havnt worked out how to get VS to handle it properly). If it doesnt auto rebuild a asm you can right-click the file in solution explorer and select Compile to force it to recompile.
Not automatically as for languages that VS doesn't understand (like asm) the build customization needs to be able to instruct VS what files to monitor that actually effect the output. So VS doesnt even know if a *.asm file is even a source file or some sort of configuration. Currently the build customization doesnt do a good enough job of instructing VS what files to monitor and under what circumstances a rebuild is required.
I have a very simple project:
main.cpp
data.asm
With VS2019, on the first build, or a clean build, everything builds fine and I can run the program and print the string.
However, if I change the string in the .asm and press Build again, I get this: (msbuild set to Diagnostic level)
Changing the .cpp file and pressing Build correctly rebuilds the .asm file as well.
The text was updated successfully, but these errors were encountered: