-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAdbClient.csproj
More file actions
35 lines (31 loc) · 1.46 KB
/
AdbClient.csproj
File metadata and controls
35 lines (31 loc) · 1.46 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
<Nullable>enable</Nullable>
<PackageId>patagona.$(AssemblyName)</PackageId>
<Authors>patagona</Authors>
<Description>A .NET Client for the Android Debug Bridge (ADB)</Description>
<PackageProjectUrl>https://github.com/patagonaa/AdbClient.NET</PackageProjectUrl>
<PackageTags>adb;android;android-debug-bridge</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/patagonaa/AdbClient.NET.git</RepositoryUrl>
<Version>5.0.1</Version>
<PackageReleaseNotes>
- fix: upgrade SixLabors.ImageSharp to non-vulnerable version
- feat: include NuGet symbol package
</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1573;1591</NoWarn>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\CHANGELOG.md" Pack="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.11" />
</ItemGroup>
</Project>