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

1

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?

Pinkney answered 10/8, 2012 at 16:17 Comment(2)
This is happening when you try to include the DLL? What code exactly is generating this?Holle
Is it just a warning? Or is it an actual error?Bleier
B
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

Bleier answered 10/8, 2012 at 16:47 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.