src/docs/topics/local-nuget-packages/README.md
In this article, we are going to create our own local nuget feed from our copy of the Orchard Core source code and add a new package source pointing to the local packages.
For more information on dotnet pack see: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-pack
dotnet pack -c Release -o c:\OrchardCoreNugetFor this example, we are going to use the Local Feed method. For more information on this see: https://docs.microsoft.com/en-us/nuget/hosting-packages/local-feeds
\\{YourServer}\NuGetServernuget init c:\OrchardCoreNuget \\{YourServer}\NuGetServer <?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="MyFeed" value="\\{YourServer}\NuGetServer" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<disabledPackageSources />
</configuration>