- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我构建我的 .NET Core (NETStandard v2.0) 项目时,我收到以下警告:
ViewModels: [FodyPackageReference] Fody: The package reference for PropertyChanged.Fodydoes not contain PrivateAssets='All'
最佳答案
PrivateAssets
是用于控制依赖 Assets 的元数据标签。
You might be using a dependency purely as a development harness and might not want to expose that to projects that will consume your package. In this scenario, you can use the PrivateAssets metadata to control this behavior.
PropertyChanged.Fody
给消费者(即您要发布一个库),设置
PrivateAssets
至
All
在您的 .csproj 文件中将删除警告。
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="PropertyChanged.Fody" Version="3.3.1" PrivateAssets="All" />
</ItemGroup>
</Project>
关于.net-core - PrivateAssets ='All' 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65297425/
当我构建我的 .NET Core (NETStandard v2.0) 项目时,我收到以下警告: ViewModels: [FodyPackageReference] Fody: The packag
此处进行简单设置: 项目 A - .NET 4.7.2 框架库项目 SeriLog 2.9.0 的软件包引用 排除 Assets =“运行时”, PrivateAssets="none",这是可选的,
我是一名优秀的程序员,十分优秀!