You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Shadowsocks.CLI.csproj 1.4 kB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <AssemblyName>sscli</AssemblyName>
  7. <PackageId>Shadowsocks.CLI</PackageId>
  8. <Authors>Clowwindy &amp; The Community</Authors>
  9. <Product>Shadowsocks CLI</Product>
  10. <Description>CLI for Shadowsocks server and client implementation in C#.</Description>
  11. <Copyright>© 2021 Clowwindy &amp; The Community</Copyright>
  12. <PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
  13. <PackageProjectUrl>https://github.com/shadowsocks/shadowsocks-windows</PackageProjectUrl>
  14. <RepositoryUrl>https://github.com/shadowsocks/shadowsocks-windows</RepositoryUrl>
  15. <RepositoryType>Public</RepositoryType>
  16. <PackageIcon>ssw128.png</PackageIcon>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <None Include="..\LICENSE.txt">
  20. <Pack>True</Pack>
  21. <PackagePath></PackagePath>
  22. </None>
  23. <None Include="..\Shadowsocks.WPF\Resources\ssw128.png">
  24. <Pack>True</Pack>
  25. <PackagePath></PackagePath>
  26. </None>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\Shadowsocks.Interop\Shadowsocks.Interop.csproj" />
  33. <ProjectReference Include="..\Shadowsocks.Protocol\Shadowsocks.Protocol.csproj" />
  34. </ItemGroup>
  35. </Project>