3

I am developing an app with Microsoft's Kinect SDK (version 1.5), but code generates a warning message:

CA1016 : Microsoft.Design : Add an AssemblyVersion attribute to 'Microsoft.Kinect.Toolkit.dll'.

How do I fix it?

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
makitocode
  • 938
  • 1
  • 16
  • 40

1 Answers1

3

This is not an important error. An Assembly version is just what version of your software it is. You can easily fix this.

Simply go to your project -> properties -> application -> Assembly Information and you will see a box like this

link

link2

Just change the Assembly Version, save and you should be fine. Hope this helps!

Note: You may want to see What are differences between AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion? for more details

Community
  • 1
  • 1
Liam McInroy
  • 4,339
  • 5
  • 32
  • 53