Kashif
Kashif

Reputation: 105

Excel Addins Version auto Update

Is there any way to auto-increment version number of Excel Add-ins when ever I publish a newer version using Visual Studio 2022, just like auto-increment for click once apps.

Upvotes: 0

Views: 73

Answers (1)

Eugene Astafiev
Eugene Astafiev

Reputation: 49397

No, Visual Studio (nor Office web add-ins extensibility model) doesn't provide anything for that out of the box. However, in Visual Studio you may consider using post-build events like shown on the screenshot where you could replace/update numbers programmatically on your own:

post-build actions in visual studio 2022 for office web add-ins

Upvotes: 1

Related Questions