简体   繁体   中英

How to get Microsoft.AspNetCore.All (version 2.0) source codes with all dependencies

I need to exclude all NuGet packages from my project. In other words, I need to build all libraries and only after that add their .dll to project. I know that all libraries are in GitHub, but downloading each library is not an option. Is there any source that contains whole meta-package sources? Thanks for your attention.

I was looking for this https://github.com/aspnet/Universe !

AspNetCore/Universe contains Microsoft.AspNetCore.All project in "src" folder and all linked submodules in folder "modules". To get all sources (include modules sources like Identity,EntityFramework, etc..) you should use:

git clone --recursive https://github.com/aspnet/Universe.git

Without --recursive flag "modules" folder will be empty.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM