294

スタックに同様の投稿がありますが、おそらく Visual Studio 2015 を使用しているため、私の問題には役立ちません。

「NuGet パッケージの復元を有効にする」オプションを VS2015 に表示するにはどうすればよいですか?

File > New Project を選択し、空の ASP.NET Web Applicationを作成しました。このメニューオプションを探しています。

ここに画像の説明を入力

プロジェクト フォルダーで既存の nuGet ファイルを探しましたが、何もありません。

4

24 に答える 24

254

時間がかかりすぎましたが、最終的にMSBuild 統合ソリューションの自動パッケージ復元への移行に関するこのドキュメントを見つけ、ここで説明されている方法を使用して問題を解決することができました。

  1. '.nuget'ソリューションからソリューション ディレクトリを削除します。
  2. またはファイルnuget.targetsからへのすべての参照を削除します。正式にはサポートされていませんが、クリーンアップが必要なプロジェクトが多数ある場合、このドキュメントはPowerShell スクリプトにリンクしています。私は手動で手動で編集したので、私の経験に関するフィードバックを提供することはできません..csproj.vbproj

ファイルを手動で編集する場合は、次のことを確認します。

ソリューション ファイル (.sln)

Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{F4AEBB8B-A367-424E-8B14-F611C9667A85}"
ProjectSection(SolutionItems) = preProject
    .nuget\NuGet.Config = .nuget\NuGet.Config
    .nuget\NuGet.exe = .nuget\NuGet.exe
    .nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject

プロジェクト ファイル (.csproj / .vbproj)

  <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
    <PropertyGroup>
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
    </PropertyGroup>
    <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  </Target>
于 2015-05-15T23:06:39.397 に答える
53

Mike が既に述べたように、VS2015 には「NuGet パッケージの復元を有効にする」オプションはありません。復元プロセスを手動で呼び出す必要があります。ファイルやディレクトリをいじらない良い方法は、NuGet パッケージ管理コンソールを使用することです。[クイック スタート] フィールド (通常は右上隅) をクリックし、「.」consoleと入力して管理コンソールを開き、次のコマンドを入力します。

Update-Package –reinstall

これにより、ソリューション内のすべてのプロジェクトのすべてのパッケージが再インストールされます。単一のプロジェクトを指定するには、次のように入力します。

Update-Package –reinstall -ProjectName MyProject

もちろん、これは、VS2015 によって提供されることもあるRestoreボタンが使用できない場合にのみ必要です。より便利な更新コマンドが一覧表示され、ここで説明されています: https://docs.microsoft.com/en-us/nuget/consume-packages/reinstalling-and-updating-packages

于 2017-08-17T04:21:51.257 に答える
9

このコマンドを使用して、すべてのパッケージを復元します

dotnet restore
于 2018-12-05T05:35:39.340 に答える
6

nuget パッケージを含むプロジェクトを Vx20XX から VS2015 にアップグレードすると、nuget パッケージに問題が発生する場合があります。

エラー メッセージの例: このプロジェクトは、このコンピューターにない NuGet パッケージを参照しています。NuGet パッケージの復元を有効にしてダウンロードします。

2016 年 2 月 6 日更新: 情報へのリンクがありましたが、機能しなくなりました。最近のパスで問題が解決したのではないかと思います???

MSBuild 統合パッケージの復元と自動パッケージ復元を行う小さなプログラムを作成する際の問題を修正しました。

ツールの実行可能ファイルはこちらからダウンロードできます。

結果を教えてください:-) !

ここに画像の説明を入力

参照としてのコード:

<Window x:Class="FixNuGetProblemsInVs2015.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:FixNuGetProblemsInVs2015"
        mc:Ignorable="d"
        Title="Fix NuGet Packages problems in Visual Studio 2015 (By Eric Ouellet)" Height="350" Width="525">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"></RowDefinition>
            <RowDefinition Height="Auto"></RowDefinition>
            <RowDefinition Height="*"></RowDefinition>
            <RowDefinition Height="Auto"></RowDefinition>
        </Grid.RowDefinitions>

        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"></ColumnDefinition>
            <ColumnDefinition Width="10"></ColumnDefinition>
            <ColumnDefinition></ColumnDefinition>
        </Grid.ColumnDefinitions>

        <TextBlock Grid.Row="0" Grid.Column="0">Root directory of projects</TextBlock>
        <Grid Grid.Row="0" Grid.Column="2">
            <Grid.ColumnDefinitions>
                <ColumnDefinition></ColumnDefinition>
                <ColumnDefinition Width="Auto"></ColumnDefinition>
            </Grid.ColumnDefinitions>

            <TextBox Grid.Column="0" Name="DirProjects"></TextBox>
            <Button Grid.Column="1" VerticalAlignment="Bottom" Name="BrowseDirProjects" Click="BrowseDirProjectsOnClick">Browse...</Button>
        </Grid>

        <!--<TextBlock Grid.Row="1" Grid.Column="0">Directory of NuGet Packages</TextBlock>
        <Grid Grid.Row="1" Grid.Column="2">
            <Grid.ColumnDefinitions>
                <ColumnDefinition></ColumnDefinition>
                <ColumnDefinition Width="Auto"></ColumnDefinition>
            </Grid.ColumnDefinitions>

            <TextBox Grid.Column="0" Name="DirPackages"></TextBox>
            <Button Grid.Column="1"  Name="BrowseDirPackages" Click="BrowseDirPackagesOnClick">Browse...</Button>
        </Grid>-->

        <TextBox Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="3" Name="TxtLog" IsReadOnly="True"></TextBox>

        <Button Grid.Row="3" Grid.Column="0" Click="ButtonRevertOnClick">Revert back</Button>
        <Button Grid.Row="3" Grid.Column="2" Click="ButtonFixOnClick">Fix</Button>
    </Grid>
</Window>


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Forms;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Xml;
using System.Xml.Linq;
using Application = System.Windows.Application;
using MessageBox = System.Windows.MessageBox;

/// <summary>
/// Applying recommanded modifications in section : "MSBuild-Integrated package restore vs. Automatic Package Restore"
/// of : http://docs.nuget.org/Consume/Package-Restore/Migrating-to-Automatic-Package-Restore
/// </summary>

namespace FixNuGetProblemsInVs2015
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            DirProjects.Text = @"c:\prj";
            // DirPackages.Text = @"C:\PRJ\NuGetPackages";
        }

        private void BrowseDirProjectsOnClick(object sender, RoutedEventArgs e)
        {
            FolderBrowserDialog dlg = new FolderBrowserDialog();
            dlg.SelectedPath = DirProjects.Text;
            if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                DirProjects.Text = dlg.SelectedPath;
            }
        }

        //private void BrowseDirPackagesOnClick(object sender, RoutedEventArgs e)
        //{
        //  FolderBrowserDialog dlg = new FolderBrowserDialog();
        //  dlg.SelectedPath = DirPackages.Text;
        //  if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
        //  {
        //      DirPackages.Text = dlg.SelectedPath;
        //  }
        //}

        // private string _dirPackages;

        private void ButtonFixOnClick(object sender, RoutedEventArgs e)
        {
            DoJob(false);
        }

        private void ButtonRevertOnClick(object sender, RoutedEventArgs e)
        {
            DoJob(true);
        }

        private void DoJob(bool revert = false)
        {
            TxtLog.Text = "";

            string dirProjects = DirProjects.Text;
            // _dirPackages = DirPackages.Text;

            if (!Directory.Exists(dirProjects))
            {
                MessageBox.Show("Projects directory does not exists: " + dirProjects);
                return;
            }

            //if (!Directory.Exists(_dirPackages))
            //{
            //  MessageBox.Show("Packages directory does not exists: " + _dirPackages);
            //  return;
            //}

            RecurseFolder(dirProjects, revert);
        }

        private void RecurseFolder(string dirProjects, bool revert = false)
        {
            if (revert)
            {
                Revert(dirProjects);
            }
            else
            {
                FixFolder(dirProjects);
            }

            foreach (string subfolder in Directory.EnumerateDirectories(dirProjects))
            {
                RecurseFolder(subfolder, revert);
            }
        }

        private const string BackupSuffix = ".fix_nuget_backup";

        private void Revert(string dirProject)
        {
            foreach (string filename in Directory.EnumerateFiles(dirProject))
            {
                if (filename.ToLower().EndsWith(BackupSuffix))
                {
                    string original = filename.Substring(0, filename.Length - BackupSuffix.Length);
                    if (File.Exists(original))
                    {
                        File.Delete(original);                                          
                    }
                    File.Move(filename, original);
                    Log("File reverted: " + filename + " ==> " + original);
                }
            }
        }

        private void FixFolder(string dirProject)
        {
            BackupFile(System.IO.Path.Combine(dirProject, "nuget.targets"));
            BackupFile(System.IO.Path.Combine(dirProject, "nuget.exe"));

            foreach (string filename in Directory.EnumerateFiles(dirProject))
            {
                if (filename.ToLower().EndsWith(".csproj"))
                {
                    FromProjectFileRemoveNugetTargets(filename);
                }
            }
        }

        private void BackupFile(string path)
        {
            if (File.Exists(path))
            {
                string backup = path + BackupSuffix;
                if (!File.Exists(backup))
                {
                    File.Move(path, backup);
                    Log("File backup: " + backup);
                }
                else
                {
                    Log("Project has already a backup: " + backup);
                }
            }
        }

        private void FromProjectFileRemoveNugetTargets(string prjFilename)
        {
            XDocument xml = XDocument.Load(prjFilename);

            List<XElement> elementsToRemove = new List<XElement>();

            foreach (XElement element in xml.Descendants())
            {
                if (element.Name.LocalName == "Import")
                {
                    var att = element.Attribute("Project");
                    if (att != null)
                    {
                        if (att.Value.Contains("NuGet.targets"))
                        {
                            elementsToRemove.Add(element);
                        }
                    }
                }

                if (element.Name.LocalName == "Target")
                {
                    var att = element.Attribute("Name");
                    if (att != null && att.Value == "EnsureNuGetPackageBuildImports")
                    {
                        elementsToRemove.Add(element);
                    }
                }
            }

            if (elementsToRemove.Count > 0)
            {
                elementsToRemove.ForEach(element => element.Remove());
                BackupFile(prjFilename);
                xml.Save(prjFilename);
                Log("Project updated: " + prjFilename);
            }
        }

        private void Log(string msg)
        {
            TxtLog.Text += msg + "\r\n";
        }

    }
}
于 2015-10-22T18:15:35.280 に答える
4

Ivan Branetsのソリューションは、基本的にこれを修正したものですが、さらに詳細を共有できます。

私の場合、Auto Package restoreTFSを使用してVS 2015にいました。これはすべてかなりデフォルトのものです。

問題は、別の開発者が TFS から解決策を取得しようとしたときに、一部のパッケージが完全に復元されなかったことです。(理由は、まだよくわかりません。)しかし、packages フォルダーには、参照用のフォルダーと NuGet パッケージが含まれていましたが、展開されていませんでした (たとえば、.dll を含む lib フォルダーが見つからなかったとします)。そこにはありますが、実際にはまったく正しい概念ではなく、パッケージの復元が妨げられていました。

解決されていないことを示す黄色の感嘆符が参照に表示されるため、これに気付くでしょう。

そのため、パッケージ内のフォルダーを削除するソリューションはパッケージの復元をブロックする問題を取り除きます。次に、ソリューションの最上位レベルで右クリックして、パッケージを復元するオプションを取得すると、機能するはずです。

于 2015-11-05T15:30:43.953 に答える
4

このアプローチは私のために働いた:

  • VS2015 を閉じる
  • VS2013 でソリューションを一時的に開き、ソリューションを右クリックしてnuget パッケージの復元を有効にします (再構築も行いましたが、必要ないと思われます)。
  • VS2013 を閉じる
  • VS2015 でソリューションを再度開く

VS2015 でも nuget パッケージの復元が有効になりました。

于 2016-08-11T17:03:48.360 に答える
4

Visual Studio の References に移動し、不足しているパッケージを確認します。Visual で Solution を右クリックし、ファイル エクスプローラーで [open folder] をクリックします。パッケージフォルダーを開き、不足しているパッケージフォルダーを削除します。Visual Studio を開き、ソリューションをビルドするだけです。不足しているすべてのパッケージが復元されます。私が助けた場合は、これを回答としてマークしてください。

于 2016-05-15T11:20:08.410 に答える
0

Tools >>> Nuget Package Manager >>> Generalにチェックを入れ、オプションNuget が不足しているパッケージをダウンロードすることを許可し、Visual Studio でのビルド中に不足しているパッケージ自動的にチェックすることで私を助けてくれました。

ここに画像の説明を入力

于 2018-07-06T17:03:38.403 に答える