user11405759
user11405759

Reputation: 1

Missing Method Exceptions in VS2019

I keep getting missing method exceptions when using VS2019.

I have a solution called DailyAnalytics. This references DLLs for Analytics_Product1, Analytics_Product2, etc. These in turn reference a DLL called Utilities (all of these DLLs are on my machine). The methods which show as missing when running DailyAnalytics are indeed in Utilities - in fact, I can run Analytics_Product1 (etc) from another solution with no errors, but when calling from DailyAnalytics, the missing method exceptions are thrown.

I have tried: 1) cleaning and rebuilding Utilities; 2) cleaning and rebuilding Analytics_Product1 (etc); 3) removing references in Analytics_Product1 (etc) to Utilities and re-adding them; and 4) removing references in DailyAnalytics to Analytics_Product1 (etc) and re-adding them.

None of the above has worked.

Actual error messages are of the form "System.MissingMethodException: Method not found: 'Utilities.AnalyticsFunctions.SomeMethod()' at AnalysisProduct1()"

Upvotes: 0

Views: 258

Answers (0)

Related Questions