6

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

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

In my opinion, these are not real warnings and can be ignored, but I don't like that strategy because ignoring warnings is a bad habit to get into.

Using a \nowarn property does not seem to be an option because the message does not have an associated number.

Also, when the project is built using a build script the warning disappears, suggesting that this is a feature of Visual Studio rather than a real compiler warning.

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

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54

2 Answers2

1

I don't believe there's a way to suppress these for BizTalk projects. BizTalk gurus just learn to ignore them.

Bryan Corazza
  • 829
  • 1
  • 7
  • 16
0

You can use the /nowarn option to suppress warnings.

See MSDN: /nowarn (Suppress Specified Warnings) (C# Compiler Options).

Mu Mind
  • 10,935
  • 4
  • 38
  • 69
avgbody
  • 1,382
  • 3
  • 15
  • 31