Manually Install Bootstrap in Visual Studio

后端 未结 1 990
予麋鹿
予麋鹿 2021-01-23 04:53

Bower apparently does not work for installing Bootstrap into a Visual Studio project any more:

https://developercommunity.visualstudio.com/content/problem/134643/bootst

相关标签:
1条回答
  • 2021-01-23 05:22

    The simplest way is to use the NuGet console.

    simply navigate to:

    Open VS >> Tools menu >> NuGet Package Manager >> Console Command.

    Alternatively: Options >> NuGet Package Manager >> Package Sources dialog box.

    Once the console appears at the bottom page, type:

    PM> Install-Package bootstrap -Version 3.3.7 
    

    If this gives you any issues or helps, please let me know.

    0 讨论(0)
提交回复
热议问题