-
|
I have an ASP.NET Core project that is built against the RTM bits of ASP.NET Core 3.1.9 that were downloaded as part of the Visual Studio 16.7.6 update. Now I want to make my own local build of ASP.NET Core 3.1.9, with changes to its source code, and have my project use that instead. Assume that I am able to do this and install the resultant artifacts successfully. How do I tell my project to use this local build instead of the default specified by |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
|
@dotnet/aspnet-build ? |
Beta Was this translation helpful? Give feedback.
-
|
@IanKemp the following should work
|
Beta Was this translation helpful? Give feedback.
-
|
FYI setting |
Beta Was this translation helpful? Give feedback.
-
|
Oops, I got confused between NETCore.App and AspNetCore.App. Sorry for wasting your time. |
Beta Was this translation helpful? Give feedback.
@IanKemp the following should work
$(AspNetCorePatchVersion)in eng/Versions.props to something higher than what's available on NuGet.org e.g.10for3.1.xat the moment.\build.cmd -packor./build.sh -packin the dotnet/aspnetcore repo-allif C++ (ANCM) or Java packages are important in your scenario. .\activate.ps1or. ./activate.shin the dotnet/aspnetcore repo$(RepoRoot)artifacts/packages/$(Configuration)/Shippingfolder from the dotnet/aspnetcore as a feed in the NuGet.config file for your project …