-
DescriptionWhen trying to package Related issues |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Issue AnalysisThis issue happens when trying to pack a 'Debug' NuGet package. NuGet packages created with Workaround - Set
|
Beta Was this translation helpful? Give feedback.
Issue Analysis
This issue happens when trying to pack a 'Debug' NuGet package. NuGet packages created with
$(Configuration)==Debugaren't going to work without also explicitly settingDisableEmbeddedXbfto false. Therefore, currently we have workaround to generate 'Debug' NuGet package:Workaround - Set
DisableEmbeddedXbfto false and pack the 'Debug' NuGet packageIf you don't want to pack a 'Release' NuGet package and still want a 'Debug' one, you could temporarily set
DisableEmbeddedXbfto false and generate the 'Debug' NuGet packageStep1:
Open your
templated controlproject's.csprojfileStep2:
In project's PropertyGroup, add a property
<DisableEmbeddedXbf>false</DisableEmbeddedXbf>S…