When I build my .NET Core (NETStandard v2.0) project I am getting the following warning:
ViewModels: [FodyPackageReference] Fody: The package reference for PropertyChanged.Fody does not contain PrivateAssets='All'
The warning is in reference to the PropertyChanged.Fody NuGet package.
While the warning does not stop the build, I would like to resolve the warning. However, I don't understand what it is trying to communicate.
<PackageReference Include="PropertyChanged.Fody"> <Version>3.3.1</Version> <PrivateAssets>All</PrivateAssets> </PackageReference>
– Gender