Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 4602f07

Browse files
committed
Add NuGet config
1 parent 18bcfed commit 4602f07

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/UnityExplorer.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
</ItemGroup>
325325
<ItemGroup>
326326
<None Include="ILRepack.targets" />
327+
<None Include="nuget.config" />
327328
<None Include="packages.config" />
328329
</ItemGroup>
329330
<ItemGroup>

src/nuget.config

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<config>
4+
<add key="dependencyVersion" value="Lowest" />
5+
</config>
6+
7+
<packageRestore>
8+
<!-- Allow NuGet to download missing packages -->
9+
<add key="enabled" value="True" />
10+
11+
<!-- Automatically check for missing packages during build in Visual Studio -->
12+
<add key="automatic" value="True" />
13+
</packageRestore>
14+
15+
<packageSources>
16+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
17+
<add key="BepInEx" value="https://nuget.bepinex.dev/v3/index.json" />
18+
</packageSources>
19+
</configuration>

0 commit comments

Comments
 (0)