-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from dojo90/64-Add-package-restore-config-for-…
…packag 64 add package restore config for packag
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> | ||
</packageSources> | ||
<packageRestore> | ||
<!-- The 'automatic' key is set to True when the "Automatically check for missing packages during | ||
build in Visual Studio" checkbox is set. Clearing the box sets this to False and disables | ||
automatic restore. --> | ||
<add key="automatic" value="True" /> | ||
</packageRestore> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> | ||
</packageSources> | ||
<packageRestore> | ||
<!-- The 'automatic' key is set to True when the "Automatically check for missing packages during | ||
build in Visual Studio" checkbox is set. Clearing the box sets this to False and disables | ||
automatic restore. --> | ||
<add key="automatic" value="True" /> | ||
</packageRestore> | ||
</configuration> |