makitocode
makitocode

Reputation: 948

How do I resolve this Kinect error: Add an AssemblyVersion attribute to 'Microsoft.Kinect.Toolkit.dll'

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?

Upvotes: 3

Views: 2319

Answers (1)

Liam McInroy
Liam McInroy

Reputation: 4356

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

Upvotes: 3

Related Questions