Adding a GitHub project as a reference in a Visual Studio solution

In a .net solution, I want to add a link to a project in github.

Is there a way to do this without the extra step of publishing a github project for nuget?

Can this be done by putting the nuget package in the git repository?

+4
source share
1 answer

Can this be done by putting the nuget package in the git repository?

No, the repo is intended for source control, it is not a binary referent, for example, the Nuget repository.

See " Installing the nuget Package from GitHub "

With Nuget there is no way to get the preview version from the git repository.

, NuGet, , , GitHub submodule git, .net .

+1

Source: https://habr.com/ru/post/1670165/


All Articles