Message 1 of 3

Not applicable
07-15-2019
06:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Solved! Go to Solution.
Solved! Go to Solution.
Hi @Anonymous ,
I think there are some problems with your .addin manifest file
1)Check whether you gave proper class name. For example
namespace REVITAPPLICATION { [Transaction(TransactionMode.Manual)] public class Class1 : IExternalApplication
then the FullClassName should be
<FullClassName>REVITAPPLICATION.Class1</FullClassName>
2)Since you created an application, in the Addin manifest file the ADDIN type should be application
<AddIn Type="Application">
I hope this helps.
Thanks for your help. I find my fullclassname is wrong. Letters should be case-sensitive.