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
Issue from Wed, 14 Nov 2012 02:18:23 GMT
Originally opened at https://clrinterop.codeplex.com/workitem/10598
The -help description for SigImp indicates that it can accept multiple header files for processing. However, when attempting to use this feature I found that only the first header file would be processed. I found the problem in the ProcessHeaderFiles() function of Module1.vb.
This line:
writer.Write("#include ""{0}""", p)
Should be changed to:
writer.WriteLine("#include ""{0}""", p)
This ensures that each #include statement written to the temporary file is written to its own line, which allows the preprocessor to properly parse them.
The text was updated successfully, but these errors were encountered:
Issue from Wed, 14 Nov 2012 02:18:23 GMT
Originally opened at https://clrinterop.codeplex.com/workitem/10598
The -help description for SigImp indicates that it can accept multiple header files for processing. However, when attempting to use this feature I found that only the first header file would be processed. I found the problem in the ProcessHeaderFiles() function of Module1.vb.
This line:
writer.Write("#include ""{0}""", p)
Should be changed to:
writer.WriteLine("#include ""{0}""", p)
This ensures that each #include statement written to the temporary file is written to its own line, which allows the preprocessor to properly parse them.
The text was updated successfully, but these errors were encountered: