Revit App publishing Issue

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I want to publish revit app in autodesk app store.There is one question about publishing, that when we create an application we create a ribbon on autodesk revit using api.
I also create a ribbon in revit using api, also give logo for that ribbon. Using following code I create a ribbon and mention the path of the logo which is already stored in my pc.
RibbonPanel ribbonPanel = application.CreateRibbonPanel("Geometry");
string thisAssemblyPath = Assembly.GetExecutingAssembly().Location;
PushButtonData bOne = new PushButtonData("ButtonNameA", "Quick Join",
thisAssemblyPath, "QuickJoin.Class1");
bOne.LargeImage =
new BitmapImage(new Uri(@"E:\TECHTURE\FINAL ADD-INS BACKUPS\QuickJoin\QuickJoin\bin\Debug\logo.png"));
PushButton pushButton = ribbonPanel.AddItem(bOne) as PushButton;
While publishing app they give facility for giving logo to the app. Then I want to remove the path of logo from the code.It automatically gibe logo to the ribbon..