[MS] NuGet PackageReference for C++ Projects in Visual Studio - devamazonaws.blogspot.com
Native C++ projects in Visual Studio now support <PackageReference> , the modern, MSBuild-native way to declare NuGet package dependencies directly in your project file. This support is available experimentally for .vcxproj projects in the Visual Studio Insiders Channel starting with version 18.7. This feature has been the most upvoted feature request on Visual Studio Developer Community, and we're delivering it based on that feedback and in collaboration with other teams at Microsoft, including Windows and Azure. NuGet with PackageReferences can be useful for teams that develop both .NET and C++ projects (native or interop) that need a consistent way to deploy their binaries across their repos or to their consumers, or for managing dependencies that aren't C++ libraries, such as binary SDK packages. We continue to recommend vcpkg for acquiring and managing C++ libraries, as it is more specialized and flexible for these types of dependencies. What Is PackageReference...