Skip to content

Commit

Permalink
Add NuGet configuration file
Browse files Browse the repository at this point in the history
- Add an explicit NuGet configuration file that only restores from NuGet.org.
- Add NuGet package source mappings.
  • Loading branch information
martincostello committed Jun 15, 2023
1 parent c782d81 commit 5bfceb2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="NuGet">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>

0 comments on commit 5bfceb2

Please sign in to comment.