Add nuget.config

This commit is contained in:
TSR Berry 2022-12-15 18:15:30 +01:00
parent 0fbcd630bc
commit 68e51a0f2e
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2
2 changed files with 10 additions and 0 deletions

3
.gitignore vendored
View file

@ -125,6 +125,9 @@ ClientBin/
packages/* packages/*
*.config *.config
# Include nuget.config
!nuget.config
# RIA/Silverlight projects # RIA/Silverlight projects
Generated_Code/ Generated_Code/

7
nuget.config Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>