Skip to content

Commit 2cbe672

Browse files
Create nuget.config (#127)
1 parent 065f498 commit 2cbe672

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Samples/nuget.config

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- This file was added for building in the CI pipeline. It is not used when building locally. -->
3+
<configuration>
4+
<packageRestore>
5+
<!-- Allow NuGet to download missing packages -->
6+
<add key="enabled" value="True" />
7+
<!-- Automatically check for missing packages during build in Visual Studio -->
8+
<add key="automatic" value="True" />
9+
</packageRestore>
10+
<packageSources>
11+
<clear />
12+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
13+
</packageSources>
14+
<disabledPackageSources />
15+
</configuration>

0 commit comments

Comments
 (0)