Skip to content

Commit 3f294a1

Browse files
authored
Add nuget.org as first restore source, for convenience
It's actually quite annoying if we use the CI feed first, since adding any packages via the IDE ends up picking the CI feed which is *not* what you'd typically want :) CI feed versions will never be found in nuget.org anyway, so there's no need to place that source first, also.
1 parent a9a7616 commit 3f294a1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/Directory.Build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232

3333
<!-- Use Directory.Packages.props if possible. NOTE: other MSBuild SDKs (i.e. NoTargets/Traversal) do not support central packages -->
3434
<ManagePackageVersionsCentrally Condition="Exists('$(MSBuildThisFileDirectory)Directory.Packages.props') AND ('$(MSBuildProjectExtension)' == '.csproj' OR '$(MSBuildProjectExtension)' == '.vbproj')">true</ManagePackageVersionsCentrally>
35-
<!-- Always add our my CI package feed first for easier dogfooding -->
36-
<RestoreSources>https://pkg.kzu.io/index.json;https://api.nuget.org/v3/index.json;$(RestoreSources)</RestoreSources>
35+
<RestoreSources>https://api.nuget.org/v3/index.json;https://pkg.kzu.io/index.json;$(RestoreSources)</RestoreSources>
3736
</PropertyGroup>
3837

3938
<ItemGroup Label="NuGet">

0 commit comments

Comments
 (0)