Convert Pro Addin to Configuration

239
1
05-29-2020 11:58 AM
AlexZlotin1
New Contributor III

Is there a quick way to convert a Pro Addin to a Pro Configuration? I would like to modify an existing addin project instead of creating a new configuration project and copying addin files to it. I have added a configuration module to the addin project (with splash screen and other pages set to null) and referenced it in config.daml. If what I want to achieve is at all possible, what are the next steps? Thanks!

0 Kudos
1 Reply
AlexZlotin1
New Contributor III

Found the answer myself. Open the addin project file (*.csproj) in a text editor and add the lines below between the Project tags. This forces the compilation of the addin as a configuration (*.proConfigX). 

<PropertyGroup>
     <PackageType>Configuration</PackageType>
</PropertyGroup>

0 Kudos