How to include VSIX output in it's package?

后端 未结 1 1139
-上瘾入骨i
-上瘾入骨i 2021-01-24 15:06

I have created a VSIX package and I want to include it\'s output dll in the VSIX, I have tried adding MEF component refrencing to itself in vsixmanifest file in Assets section,

相关标签:
1条回答
  • 2021-01-24 15:39

    Open your project file with notepad and set this items to true

    <IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
    <IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer>
    <IncludeDebugSymbolsInLocalVSIXDeployment>true</IncludeDebugSymbolsInLocalVSIXDeployment>
    <CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
    <CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
    
    0 讨论(0)
提交回复
热议问题