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.
|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net5.0</TargetFramework>
- <Nullable>enable</Nullable>
- <AssemblyName>sscli</AssemblyName>
- <PackageId>Shadowsocks.CLI</PackageId>
- <Authors>Clowwindy & The Community</Authors>
- <Product>Shadowsocks CLI</Product>
- <Description>CLI for Shadowsocks server and client implementation in C#.</Description>
- <Copyright>© 2021 Clowwindy & The Community</Copyright>
- <PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
- <PackageProjectUrl>https://github.com/shadowsocks/shadowsocks-windows</PackageProjectUrl>
- <RepositoryUrl>https://github.com/shadowsocks/shadowsocks-windows</RepositoryUrl>
- <RepositoryType>Public</RepositoryType>
- <PackageIcon>ssw128.png</PackageIcon>
- </PropertyGroup>
-
- <ItemGroup>
- <None Include="..\LICENSE.txt">
- <Pack>True</Pack>
- <PackagePath></PackagePath>
- </None>
- <None Include="..\Shadowsocks.WPF\Resources\ssw128.png">
- <Pack>True</Pack>
- <PackagePath></PackagePath>
- </None>
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21177.1" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\Shadowsocks.Interop\Shadowsocks.Interop.csproj" />
- <ProjectReference Include="..\Shadowsocks.Net\Shadowsocks.Net.csproj" />
- <ProjectReference Include="..\Shadowsocks.Protocol\Shadowsocks.Protocol.csproj" />
- </ItemGroup>
-
- </Project>
|