首页 > 解决方案 > 是否有可能知道什么是应用程序/客户端正在使用我的 nuget 包

问题描述

这个问题有点奇怪。我很想知道有什么方法可以知道所有应用程序/客户端都在使用我的 nuget 包。

我已经发布了几个 nuget 包。我只能看到 nuget 提供的统计信息。

标签: nugetpackage

解决方案


Short answer is no, you can't.

But if your package name is unique, and you are interested in public projects on github, then you can search for something like:

PackageReference Include="Your.Package.Name"

or

dependency id="Your.Package.Name"

This might give you some results.


推荐阅读