<%@ Page Language="C#" %> <%@ Import Namespace="NuGet.Server" %> <%@ Import Namespace="NuGet.Server.App_Start" %> <%@ Import Namespace="NuGet.Server.Infrastructure" %> NuGet Private Repository

You are running NuGet.Server v<%= typeof(NuGetODataConfig).Assembly.GetName().Version %>

Click ">here to view your packages.

Repository URLs In the package manager settings, add the following URL to the list of Package Sources:
<%= Helpers.GetRepositoryUrl(Request.Url, Request.ApplicationPath) %>
<% if (string.IsNullOrEmpty(ConfigurationManager.AppSettings["apiKey"])) { %> To enable pushing packages to this feed using the NuGet command line tool (nuget.exe), set the apiKey appSetting in web.config. <% } else { %> Use the command below to push packages to this feed using the NuGet command line tool (nuget.exe).
nuget.exe push {package file} {apikey} -Source <%= Helpers.GetPushUrl(Request.Url, Request.ApplicationPath) %>
<% } %>
<% if (Request.IsLocal || ServiceResolver.Current.Resolve().GetBoolSetting("allowRemoteCacheManagement", false)) { %>
Adding packages To add packages to the feed put package files (.nupkg files) in the folder <% = PackageUtility.PackagePhysicalPath %>

Click ">here to clear the package cache.
<% } %>