пятница, 20 декабря 2013 г.

Избавляемся от предупреждения об “mismatch between processor architecture”

При подключении 3ds max библиотек в Visual Studio появляется такое предупреждение:
1
2
3
There was a mismatch between the processor architecture
of the project being build "MSIL" and the processor architecture
of the reference "[internal C# dll]", "x86".
Что собственно мешает высматривать в окне "Error List" действительно важные предупреждения.
Чтобы избавиться от этого сообщения надо открыть файл проекта и добавить туда следующие строки
1
2
3
<propertygroup>
  <resolveassemblywarnorerrorontargetarchitecturemismatch>None</resolveassemblywarnorerrorontargetarchitecturemismatch>
</propertygroup>
Источник:
http://stackoverflow.com/a/12672514/2237301