Browse Source

🪲 Use nightly System.CommandLine

dotnet/command-line-api#1092
pull/3127/head
database64128 3 years ago
parent
commit
423328c5d4
No known key found for this signature in database GPG Key ID: 1CA27546BEDB8B01
2 changed files with 10 additions and 1 deletions
  1. +1
    -1
      Shadowsocks.CLI/Shadowsocks.CLI.csproj
  2. +9
    -0
      nuget.config

+ 1
- 1
Shadowsocks.CLI/Shadowsocks.CLI.csproj View File

@@ -29,7 +29,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21109.1" />
</ItemGroup>

<ItemGroup>


+ 9
- 0
nuget.config View File

@@ -0,0 +1,9 @@
<?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="System.CommandLine Nightly" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
</packageSources>
</configuration>

Loading…
Cancel
Save