Skip to content

Commit

Permalink
Disabling automatic restore in NuGet config (#394)
Browse files Browse the repository at this point in the history
* Disabling automatic restore in NuGet config

For some reason it causes problems when building from VS, disabling it for now, until we've found a better solution.

* Update NuGet.Config

Minor whitespace adjustment

Co-authored-by: martinpe36 <[email protected]>
  • Loading branch information
AndreyTretyak and martinpe36 authored Aug 26, 2021
1 parent a9dfb5b commit 47a7f3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="dependencyVersion" value="Highest" />
<add key="dependencyVersion" value="Highest" />
</config>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3"/>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
<add key="enabled" value="false" />
<add key="automatic" value="false" />
</packageRestore>
<solution>
<add key="disableSourceControlIntegration" value="true" />
Expand Down

0 comments on commit 47a7f3a

Please sign in to comment.