How can I suppress individual BizTalk warnings in Visual Studio 2005

We are currently using BizTalk 2006 R2 to create Enterprise Integration solutions. We make extensive use of BizTalk maps, but when you build a solution in Visual Studio 2005, it issues the following warning against maps:

Warning Double-click here to show / hide compiler links.

In my opinion, these are not real warnings, and they can be ignored, but I do not like this strategy, because ignoring warnings is a bad habit to join.

Using the \ nowarn property is not possible because the message has no associated number.

In addition, when the project is built using the build script, the warning disappears, which means that it is a Visual Studio function and not a real compiler warning.

So, I was wondering if there is a way to suppress this type of warning in Visual Studio.

+6
visual-studio warnings biztalk biztalk2006r2
source share
2 answers

I do not believe that there is a way to suppress them for BizTalk projects. BizTalk gurus just learn to ignore them.

+1
source share

You can use the / nowarn option to suppress warnings.

See MSDN: / nowarn (disallow specified warnings) (C # compiler options) .

0
source share

All Articles