-
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.10
for3.1.x
at the moment.\build.cmd -pack
or./build.sh -pack
in the dotnet/aspnetcore repo-all
if C++ (ANCM) or Java packages are important in your scenario. .\activate.ps1
or. ./activate.sh
in the dotnet/aspnetcore repo$(RepoRoot)artifacts/packages/$(Configuration)/Shipping
folder from the dotnet/aspnetcore as a feed in the NuGet.config file for your project …