I have a Visual Studio project that I would like to distribute as a template to other developers across the organization. I've been able to package the project into a NuGet package, but I'm a bit lost on how to distribute this across the organization.
At this point, I'm considering copying the NuGet package to a shared location and setting up a process that'll run when developers sign in to install the package via dotnet new -i <path_to_nuget_package_file>
but I suspect there may be a better way to accomplish this.
Does anyone have any ideas?