Skip to content

Commit

Permalink
Fix CI build
Browse files Browse the repository at this point in the history
Ensure main's CI build only uses nuget.org feed. Since main represents the latest released version, only public packages on nuget.org should be needed.
  • Loading branch information
eerhardt committed Apr 13, 2022
1 parent 731f3e6 commit 7a1e75d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<fallbackPackageFolders>
<clear />
</fallbackPackageFolders>
<packageSources>
<clear />
<!-- Don't add any private feeds. nuget.org should be the only required feed for the main branch. -->
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>

0 comments on commit 7a1e75d

Please sign in to comment.