Skip to content

Commit

Permalink
Configure DefaultPushSource for NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
bdukes committed Mar 17, 2023
1 parent da57b23 commit 4c3926d
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>

<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<config>
<add key="defaultPushSource" value="https://api.nuget.org/v3/index.json" />
</config>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>

0 comments on commit 4c3926d

Please sign in to comment.