admin管理员组文章数量:1221305
What should we pack in nuget package for a MAUI class library such that no private, internal or implementation detail is embeded in nuget package i.e. the user should not be able to navigate to the code source and see private and internal fields and function and their implementation.
I tried adding the following to the csproj:
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
but this does not help in creating a dll with above information hidden.
Is there some other file I should pack in MAUI nuget package and not the dll (like we embed .winmd in case of UWP?
本文标签: dllHow to create nuget package for MAUI class libraryStack Overflow
版权声明:本文标题:dll - How to create nuget package for MAUI class library? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1739273251a2155910.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论