Select to view content in your preferred language

After upgrading Managed Configuration to 3.x, it builds as an AddIn

403
1
Jump to solution
12-15-2023 06:18 AM
BarbaraSchneider2
Occasional Contributor III

I upgraded a Managed Configuration from 2.x to 3.x using the "Pro Migrate Project" utility. In my config.daml, I specifiy the following:

 <Configuration>
   <ConfigurationManager className="ReliefConfigManager" />
 </Configuration>

However, when I buld my solution, an Add-In (....esriAddinX) is created instead of a configuration (....proConfigX). What am I missing?

0 Kudos
1 Solution

Accepted Solutions
BarbaraSchneider2
Occasional Contributor III

I have found the solution: In the file manager, right click on <ProjectName>.csproj and open it in a text editor. At the bottom, just before the tag <Import Project..../>, add:

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

View solution in original post

0 Kudos
1 Reply
BarbaraSchneider2
Occasional Contributor III

I have found the solution: In the file manager, right click on <ProjectName>.csproj and open it in a text editor. At the bottom, just before the tag <Import Project..../>, add:

<PropertyGroup>
    <PackageType>Configuration</PackageType>
</PropertyGroup>
0 Kudos