forked from SharpAdb/AdvancedSharpAdbClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
51 lines (45 loc) · 2.83 KB
/
Directory.Build.props
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
48
49
50
51
<Project>
<PropertyGroup>
<AssemblyTitle>.NET client for adb, the Android Debug Bridge (AdvancedSharpAdbClient)</AssemblyTitle>
<Authors>The Android Open Source Project, Ryan Conrad, Quamotion and improved by yungd1plomat, wherewhere</Authors>
<Copyright>https://github.com/quamotion/madb</Copyright>
<Description>AdvancedSharpAdbClient is a .NET library that allows .NET and .NET Core applications to communicate with Android devices. It's a improved version of SharpAdbClient.</Description>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
<LangVersion>latest</LangVersion>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/yungd1plomat/AdvancedSharpAdbClient</PackageProjectUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageTags>android;adb;SharpAdbClient;AdvancedSharpAdbClient</PackageTags>
<RepositoryType>git</RepositoryType>
<Product>AdvancedSharpAdbClient: A .NET client for the Android Debug Bridge (adb)</Product>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/yungd1plomat/AdvancedSharpAdbClient</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Title>.NET client for adb, Android Debug Bridge (AdvancedSharpAdbClient)</Title>
<VersionPrefix>2.5.4</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<FullTargets Condition="'$(FullTargets)' == ''">False</FullTargets>
<IsWindows Condition="'$(IsWindows)' == ''">False</IsWindows>
<IsWindows Condition="$([MSBuild]::IsOSPlatform('Windows')) == 'true' OR '$(Platform)' == 'Windows NT'">True</IsWindows>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcore50'">
<NugetTargetMoniker>.NETCore,Version=v5.0</NugetTargetMoniker>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<SuppressTfmSupportBuildWarnings>True</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
<CopyLocalLockFileAssemblies>False</CopyLocalLockFileAssemblies>
<DefaultLanguage>en-US</DefaultLanguage>
<DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
<LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
<NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
<TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformMinVersion>10.0.15138.0</TargetPlatformMinVersion>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
</PropertyGroup>
</Project>