-
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)==Debug
aren't going to work without also explicitly settingDisableEmbeddedXbf
to false. Therefore, currently we have workaround to generate 'Debug' NuGet package:Workaround - Set
DisableEmbeddedXbf
to 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
DisableEmbeddedXbf
to false and generate the 'Debug' NuGet packageStep1:
Open your
templated control
project's.csproj
fileStep2:
In project's PropertyGroup, add a property
<DisableEmbeddedXbf>false</DisableEmbeddedXbf>
S…