-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathBencodeNET.csproj
More file actions
47 lines (40 loc) · 1.6 KB
/
BencodeNET.csproj
File metadata and controls
47 lines (40 loc) · 1.6 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
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<LangVersion>11</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<CodeAnalysisRuleSet>BencodeNET.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<!-- Needed for code coverage -->
<PropertyGroup>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup>
<PackageId>BencodeNET</PackageId>
<Authors>Søren Kruse</Authors>
<Company />
<Product>BencodeNET</Product>
<Description>A library for encoding and decoding bencode (e.g. torrent files)</Description>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Krusen/BencodeNET</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Krusen/BencodeNET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>bencode;torrent;torrents</PackageTags>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Version Condition="'$(SemVer)' != ''">$(SemVer)</Version>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<None Include="../Assets/icon.png" Pack="true" PackagePath="/" />
</ItemGroup>
<!--Dev dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.5.22" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Pipelines" Version="6.0.3" />
</ItemGroup>
</Project>