diff options
author | Rob Mensching <rob@firegiant.com> | 2022-09-30 23:48:33 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-10-03 12:29:27 -0700 |
commit | ed6593322d34ff0e655be9347f340d0cc96c0784 (patch) | |
tree | f74f8dfb4ca4212d160cffba64d46fc3c4cc3e76 /src/build_official.cmd | |
parent | bd05b603142673135ac66cdbc81a2ae3028cb37f (diff) | |
download | wix-ed6593322d34ff0e655be9347f340d0cc96c0784.tar.gz wix-ed6593322d34ff0e655be9347f340d0cc96c0784.tar.bz2 wix-ed6593322d34ff0e655be9347f340d0cc96c0784.zip |
Use packageSourceMapping to control source of NuGet packages
Contrary to common-sense, NuGet package sources are not ordered.
Thus, the existence of nuget_official.config is pointless as it was
an attempt to prefer already published .nupkgs over newly built
.nupkgs in post-GA builds.
Instead, NuGet introduced packageSourceMapping which is a more
powerful solution to address post-GA package resolution.
Diffstat (limited to 'src/build_official.cmd')
-rw-r--r-- | src/build_official.cmd | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/build_official.cmd b/src/build_official.cmd index 63566260..56c2a708 100644 --- a/src/build_official.cmd +++ b/src/build_official.cmd | |||
@@ -1,8 +1,6 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | @copy nuget_official.config ..\nuget.config | ||
5 | |||
6 | build_all.cmd Release Official | 4 | build_all.cmd Release Official |
7 | 5 | ||
8 | @popd | 6 | @popd |