Using Nuget in Visual Studio 2005 & 2008

来源:http://www.cnblogs.com/seayxu/archive/2016/03/11/5265409.html
-Advertisement-
Play Games

NuGet is a Visual Studio extension that makes it easy to install and update third-party libraries and tools in Visual Studio. NuGet is not mandatory f


NuGet is a Visual Studio extension that makes it easy to install and update third-party libraries and tools in Visual Studio. NuGet is not mandatory for using the PayPal SDKs but makes managing dependencies in your application a lot simpler.

Visual Studio 2005 and 2008 do not have out of the box support for NuGet. However you can follow the instructions given here to get NuGet working in your IDE.

Prerequisites

  • .NET Framework 4.0 - You must have .NET framework 4.0 installed on your machine.

  • NuGet.exe - Download the NuGet command line executable from https://dist.nuget.org/index.html

  • Make sure NuGet.exe is available in the PATH environment variable.

    Check if .NET Framework 4.0 or higher is installed in the Computer from Control Panel -> Get programs

Or else
Run the following command from Windows Command Prompt >:
wmic product where "Name like 'Microsoft .Net%'" get Name, Version

  • Please wait for the command to execute, it may take more than a minute to execute

  • Running the aforesaid command should list the .NET Framework versions installed as in this particular case

  • [Please note the command might take a while to execute]

Running the aforesaid command should list the .NET Framework versions installed similar to the following:

Name                                                Version
Microsoft .NET Compact Framework 1.0 SP3 Developer  1.0.4292
Microsoft .NET Framework 4.5                        4.5.50709
Microsoft .NET Framework 4.5 Multi-Targeting Pack   4.5.50709
Microsoft .NET Framework 2.0 SDK (x64) - ENU        2.0.50727
Microsoft .NET Framework 4 Multi-Targeting Pack     4.0.30319
Microsoft .NET Framework 4.5 SDK                    4.5.50709
Microsoft .NET Compact Framework 2.0 SP2            2.0.7045
Microsoft .NET Compact Framework 3.5                3.5.7283
Microsoft .NET Framework 1.1                        1.1.4322
Microsoft .NET Compact Framework 1.0 SP3            1.0.4294

If V4.X is not installed, then download and install

Installation

  • Go to Visual Studio Menu --> Tools

  • Select External Tools…

  • Select 'Add'.

  • Enter the following:

Title: NuGet Install
Command (Having in Environment Variables Path): NuGet.exe
Arguments: install your.package.name -excludeversion -outputDirectory .\Packages
Initial directory: $(SolutionDir)
Use Output window: Check
Prompt for arguments: Check
  • Click Apply

  • Click OK

On Clicking Apply and OK, NuGet Install will be added (as External Command) to Menu --> Tools

Menu --> Tools, clicking NuGet Install will pop up for NuGet Install Arguments and Command Line
Also, NuGet Toolbar can be added, right-click on Visual Studio Menu and select Customize…
Customize by clicking New…
Enter Toolbar name: NuGet and click OK
Check NuGet Checkbox in the Toolbars tab for NuGet Toolbar to pop up
Click Commands tab and select Tools and External Command 6 (Having added NuGet Install as External Command 6*) 
*Note: The External Command number may differ depending on the particular Visual Studio installation
Drag and drop External Command 6 to NuGet Toolbar
Right-click NuGet Toolbar
Enter Name: Install Package
Right-click Change Button Image and select an image
Close Customize
Drag and drop NuGet Toolbar to the Menu

Using NuGet

  • Click the NuGet Toolbar Install Package
    Clicking on the NuGet Toolbar Install Package will pop up for NuGet Install Arguments and Command Line

Example NuGet Install:
Enter Arguments: 
install PayPalCoreSDK -excludeversion -outputDirectory .\Packages

On clicking OK, the output window should display:

Attempting to resolve dependency 'PayPalCoreSDK'.
Attempting to resolve dependency 'log4net (ò 1.2.10)'.
Successfully installed 'log4net 1.2.10'.
Successfully installed 'PayPalCoreSDK 1.0.0'.

Menu View --> Output (Ctrl+Alt+O)

The 'PayPalCoreSDK' Package including the dependencies will be downloaded to the 'Packages' folder root directory of the Solution (.sln) file.

Select 'Packages' folder by clicking it and then click 'Show All Files' in the Solution Explorer
Note: If 'Packages' folder was not included in the Solution Explorer, click 'Show All Files' before clicking 'Refresh'
Add the references to the dependent files downloaded to 'Packages' folder:

Note: By default, the root directory of Nuget Installation is the same as that of the Solution (.sln) file.
In case of a direct installation using Visual Studio without loading any solution: 
The typical location for Visual Studio 2005: 
'C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\'
The typical Installation location for Visual Studio 2008:
'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\'

from https://segmentfault.com/a/1190000004584894


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 嘿嘿嘿,題目比較繞哈。本篇主要討論一般情況下,頁面的佈局技巧,怎麼將元素的展現儘量做到解析度無關。基本的思路仍然是儘量少的標定具體的數字,而是用比列來標註各元素占據的空間。 這裡我打算用易信的名片頁來舉例: Phone的界面看起來不錯,大致以縱向排列。最上方是標題欄,頭像部分居中,下麵的文字以列表形
  • 開篇 非同步編程是程式設計的重點也是難點,還記得在剛開始接觸.net的時候,看的是一本c#的Winform實例教程,上面大部分都是教我們如何使用Winform的控制項以及操作資料庫的實例,那時候做的基本都是資料庫的demo,數據量也不大,程式在執行的時候基本上不會出現阻塞的情況。隨著不斷的深入.net,
  • 介於網路上充斥著大量的含糊其辭的Socket初級教程,擾亂著新手的學習方向,我來扼要的教一下新手應該怎麼合理的處理Socket這個玩意兒。 一般來說,教你C#下Socket編程的老師,很少會教你如何解決Socket粘包、半包問題。 更甚至,某些師德有問題的老師,根本就沒跟你說過Socket的粘包、半
  • 通過Unity依賴鏈跟蹤,給不同的對象註入不同的Logger,使得日誌記錄器的使用更加舒適。
  • 主要使用了Windows API 實現,你可以在你C盤下的system32文件夾中找到user32.dll,函數的說明在MSDN都有,只需要拿名字去搜一下就行 根據視窗的類名和視窗名稱獲取視窗句柄,成功返回一個視窗的句柄,否則返回0: [DllImport("User32.dll", EntryPo
  • Entity Framework Power Tools是一個由EntityFramework開發小組提供的工具,它可以從現有資料庫生成Fluent款式的Code First代碼。 大致來說,這個工具有這樣幾個功能:1) 按照現有資料庫結構,生成Code First POCO class、DbCon
  • 1 <Style x:Key="{x:Static GridView.GridViewScrollViewerStyleKey}" TargetType="{x:Type ScrollViewer}"> 2 <Setter Property="Focusable" Value="false"/> 3
  • 在.net開發客戶端的時候,一定會遇到用戶沒有安裝.net環境的問題,特別是現在win7,win8,win10多系統並用的時間段,很多開發者使用的是4.5的目標環境,用戶卻是使用win7的系統,這樣勢必會要安裝環境包 可是如果win7的用戶已經安裝4.5的環境呢?那麼用戶是否需要連帶著環境包一起下載
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...