Hello:
I am trying to compile MYPhotoIndex using Microsoft's new Visual Studio 2010 and not being a C# person am running into some trouble, here are the errors I am getting.
D:\MyPhotoIndex\Client\MyPhotoIndex.Utilities\Network security\UPnPController.cs(13,35): error CS0234: The type or namespace name 'UPnPNATClass' does not exist in the namespace 'NATUPNPLib' (are you missing an assembly reference?)
D:\MyPhotoIndex\Client\MyPhotoIndex.Utilities\Network security\UPnPController.cs(14,35): error CS0234: The type or namespace name 'UPnPNATClass' does not exist in the namespace 'NATUPNPLib' (are you missing an assembly reference?)
D:\MyPhotoIndex\Client\MyPhotoIndex.Utilities\Network security\UPnPController.cs(29,35): error CS0234: The type or namespace name 'IStaticPortMappingCollection' does not exist in the namespace 'NATUPNPLib' (are you missing an assembly reference?)
Now the source lines in question are these:
private static NATUPNPLib.UPnPNATClass _UPnPNat = null;
private static NATUPNPLib.UPnPNATClass UPnPNat
private static NATUPNPLib.IStaticPortMappingCollection StaticPortMappings
NOW, I DO NOT NEED ANY type of Web Interfacing so I will try and comment them out so I can try and make some changes I would like to add to the program (Want to add the ability to build the tags based on the directory structure from an import)
Any Help? Any One?
BobVal