c# - Severity Code Description Project File Line Suppression State Error The tag 'VideoResultControl' does not exist in XML -
i trying implement microsoft emotion api in c# using code available on github. followed steps given in https://www.microsoft.com/cognitive-services/en-us/emotion-api/documentation/getstarted. have 3 errors, of them is:
error : tag 'videoresultcontrol' not exist in xml namespace 'clr-namespace:sampleusercontrollibrary;assembly=sampleusercontrollibrary'. line 28 position 10.
error: tag 'samplescenarios' not exist in xml namespace 'clr-namespace:sampleusercontrollibrary;assembly=sampleusercontrollibrary'. line 12 position 10.
in solution explorer, "sampleusercontrollibrary (load fail)" appears: means no user controls libraries loaded.
thanks in advance.
i had exact same problem
the problem here sampleusercontrollibrary not loaded. because -
cognitive-common-windows git submodule
so, todos -
git submodule init git submodule update
more info can found here
Comments
Post a Comment