-
Notifications
You must be signed in to change notification settings - Fork 54
/
Directory.Build.props
63 lines (56 loc) · 3.73 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
52
53
54
55
56
57
58
59
60
61
62
63
<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 and wherewhere</Authors>
<ContinuousIntegrationBuild>True</ContinuousIntegrationBuild>
<Copyright>Copyright © 2021 - 2024 SharpAdb. All Rights Reserved.</Copyright>
<Description>AdvancedSharpAdbClient is a .NET library that allows .NET, Mono, Unity applications to communicate with Android devices. It's a improved version of SharpAdbClient.</Description>
<Deterministic>True</Deterministic>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
<LangVersion>latest</LangVersion>
<PackageIconUrl>https://raw.githubusercontent.com/SharpAdb/AdvancedSharpAdbClient/main/logo.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/SharpAdb/AdvancedSharpAdbClient</PackageProjectUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>https://github.com/SharpAdb/AdvancedSharpAdbClient/releases</PackageReleaseNotes>
<PackageTags>Android;ADB;Communication;UWP;Xamarin;WinUI;MAUI;Mono;Unity;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/SharpAdb/AdvancedSharpAdbClient</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Title>.NET client for adb, Android Debug Bridge (AdvancedSharpAdbClient)</Title>
<VersionPrefix>3.3.13</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<FullTargets Condition="'$(FullTargets)' == ''">False</FullTargets>
<ImportAsync Condition="'$(ImportAsync)' == ''">False</ImportAsync>
<IsStandard Condition="'$(IsStandard)' == ''">False</IsStandard>
<IsWindows Condition="'$(IsWindows)' == ''">False</IsWindows>
<IsWindows Condition="$([MSBuild]::IsOSPlatform('Windows')) == 'True' OR '$(Platform)' == 'Windows NT'">True</IsWindows>
<IsTestProject Condition="'$(IsTestProject)' == ''">$(MSBuildProjectName.Contains('.Test'))</IsTestProject>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcore5.0'">
<NugetTargetMoniker>.NETCore,Version=v5.0</NugetTargetMoniker>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
<TargetPlatformMinVersion>10.0</TargetPlatformMinVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0.15138.0'">
<DefineConstants>$(DefineConstants);UAP10_0_15138_0</DefineConstants>
<TargetPlatformMinVersion>10.0.15138.0</TargetPlatformMinVersion>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'uap'))">
<CopyLocalLockFileAssemblies>False</CopyLocalLockFileAssemblies>
<DefaultLanguage>en-US</DefaultLanguage>
<DefineConstants>$(DefineConstants);NETCORE;NETCORE_5_0;NETFX_CORE;WINDOWS_UWP;UAP10_0</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>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
</PropertyGroup>
</Project>