我必须在我的visual studio中配置nugets和VSIX。我们现在通过在工具 - >下添加包源来手动完成。选项 - >环境/工具 - >选项 - > Nuget包管理器。
当我们打开工具时,我需要自动填充nuget和VSIX的feed / URL - > Visual Studio中的选项,以便用户只需选择相应的源并安装它,以消除添加用于安装nugets / VSIX的URL的手动开销。
感谢。
答案 0 :(得分:1)
Nuget gallery可以通过编程方式配置为所需的nuget feed。我们通过编写自定义控件来完成它。在我们的系统中,在AppData'文件夹,有一个名为 Nuget.config 的文件。
在此文件中列出了所有Nuget字段,因此用户可以在Visual Studio中看到这些Nuget提要 - >工具 - >选项 - >环境/工具 - >选项 - > Nuget包管理器。
要添加您的Nuget Feed,您只需修改 Nuget.Config 文件并将其添加到其中。以下是代码:
[CustomAction]
public static ActionResult ConfigAdeptNuGetFeed(Session session)
{
session.Log("*** Begin ConfigAdeptNuGetFeed ***");
var result = ActionResult.Failure;
if (File.Exists(XDocPath))
{
session.Log("Nuget.config was found in the %appdata% folder.");
try
{
var xDoc = new XmlDocument();
xDoc.Load(XDocPath);
var baseNode = xDoc.DocumentElement;
if (baseNode != null)
{
session.Log($"{baseNode.Name} has {baseNode.ChildNodes.Count} child elements.");
session.Log($"XML before install: {baseNode.OuterXml}");
if (baseNode.ChildNodes.Count >= 2)
{
//Checks for the AdeptNugetfeed.
var node =
baseNode.SelectSingleNode($"//add[@value='{AdeptInstaller.AdeptNuGetFeedPath}']");
//AdeptFeed not found, adding it.
if (node == null)
{
session.Log("Adept Feed not present. Adding it now.");
var packageNode = xDoc.GetElementsByTagName("packageSources")[0];
var newElement = xDoc.CreateElement("add");
var xAttribute = xDoc.CreateAttribute("key");
xAttribute.Value = "AdeptNugetFeed";
var xAttributeVal = xDoc.CreateAttribute("value");
xAttributeVal.Value = AdeptInstaller.AdeptNuGetFeedPath;
newElement.Attributes.Append(xAttribute);
newElement.Attributes.Append(xAttributeVal);
packageNode.AppendChild(newElement);
}
else
{
session.Log("Adept feed is already present. Nothing to do.");
}
}
else
{
session.Log($"{baseNode.Name} is empty.");
baseNode.InnerXml = AdeptInstaller.NuGetFullConfig;
}
xDoc.Save(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Nuget", "Nuget.config"));
session.Log($"XML after install: {baseNode.OuterXml}");
}
else
{
session.Log("NuGet.config file is invalid... abbending.");
throw new XmlException("XML issue with the reading of the nuget.config file.");
}
result = ActionResult.Success;
}
catch (Exception exc)
{
session.Log(exc.ToString());
result = ActionResult.Failure;
}
}
else
{
Console.WriteLine(AdeptInstaller.Nuget_config_file_not_found);
result = ActionResult.Failure;
}
return result;
}
答案 1 :(得分:0)
更好的方法是运行powershell comand Register-PackageSource,例如
Register-PackageSource -Name "My package source" -Location "C:\MyNugetPackages" -ProviderName "NuGet"
这会将软件包源也添加到Visual Studio设置中。