How to use NuGet packages with an ASP.NET Website on CI Server

前端 未结 1 986
独厮守ぢ
独厮守ぢ 2021-01-05 09:49

I have a number of ASP.NET Web Form Websites (the one with no .csproj file), and I am trying to figure out how to best use NuGet packages with them. When using Visual Studio

相关标签:
1条回答
  • 2021-01-05 10:52

    After some time, I have a workaround that gets me where I need to be, albeit not in the best way.

    In newer versions of Visual Studio, when a binary dependency is added to a website via VS, it adds a (binaryfile).dll.refresh file to the bin folder alongside the binary file. The contents of the file is the relative path to the .dll via the packages folder for the solution. In addition, a packages.config file is added to the website.

    The way to get it to build on a CI server is:

    1. Ignore (.gitignore, .hgignore) the website's bin folder
    2. Explicitly add the .refresh file(s) in the bin folder
    3. Prior to the actual build, call NuGet restore, passing in the path to the website's packages.config and setting the PackagesDirectory (or SolutionDirectory) to the packages folder for the solution
    4. Pre-Compile, MSBuild will open each refresh file, and copy the file from the location contained in the file.

    It's not a great solution, because I now have to call NuGet restore multiple times (once for solution, once for each website), but it does work. I don't know how far back the .refresh file is supported, but it does work in 2015. I may make a change request in NuGet to allow for multiple solutions/packages.configs to be passed in via the command line.

    Thanks, Erick

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