Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Confuser2.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<File Path="ConfuserEx.Common.targets" />
<File Path="Directory.Build.props" />
<File Path="LICENSE.md" />
<File Path="nuget.config" />
<File Path="README.md" />
<File Path="version.json" />
</Folder>
Expand Down
19 changes: 19 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="dnlib" value="https://www.myget.org/F/dnlib-kant2002/api/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget">
<package pattern="*" />
</packageSource>
<packageSource key="dnlib">
<package pattern="dnlib" />
</packageSource>
</packageSourceMapping>

</configuration>
Loading