-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathTorrentCore.csproj
More file actions
36 lines (32 loc) · 1.89 KB
/
TorrentCore.csproj
File metadata and controls
36 lines (32 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>TorrentCore</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>TorrentCore</PackageId>
<PackageVersion>0.0-dev</PackageVersion>
<PackageProjectUrl>https://torrentcore.org/</PackageProjectUrl>
<RepositoryUrl>https://github.com/SamuelFisher/torrentcore</RepositoryUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/SamuelFisher/torrentcore/master/LICENSE.md</PackageLicenseUrl>
<Description>A BitTorrent library that runs on all platforms supporting the .NET Platform Standard 2.0.</Description>
<Authors>SamuelFisher</Authors>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<DocumentationFile>bin\Debug\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Transport\ClientPeerIds.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BencodeNET" Version="2.2.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" />
<PackageReference Include="Open.NAT.Core" Version="2.1.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
<PackageReference Include="System.Net.Sockets" Version="4.3.0" />
<PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.3.1" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
</ItemGroup>
</Project>