|
1 | | -<?xml version="1.0" encoding="utf-8"?> |
2 | | -<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
3 | 3 | <PropertyGroup> |
4 | | - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
5 | | - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
6 | | - <ProjectGuid>{e34bcfa0-caa4-412c-aa1c-75db8d67d157}</ProjectGuid> |
7 | | - <OutputType>Library</OutputType> |
8 | | - <RootNamespace>Xamarin.Android.Tools</RootNamespace> |
9 | | - <AssemblyName>Xamarin.Android.Tools.AndroidSdk</AssemblyName> |
10 | | - <TargetFrameworkVersion>v4.6</TargetFrameworkVersion> |
11 | | - <ProductVersion>8.0.30703</ProductVersion> |
12 | | - <SchemaVersion>2.0</SchemaVersion> |
| 4 | + <TargetFrameworks>netstandard2.0;net461</TargetFrameworks> |
13 | 5 | <SignAssembly>true</SignAssembly> |
14 | 6 | <AssemblyOriginatorKeyFile>..\..\product.snk</AssemblyOriginatorKeyFile> |
| 7 | + <Title>Xamarin.Android.Tools</Title> |
| 8 | + <Authors>Xamarin</Authors> |
| 9 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 10 | + <RepositoryUrl>https://github.com/xamarin/xamarin-android-tools</RepositoryUrl> |
| 11 | + <Description>Xamarin tools for interacting with the Android SDK.</Description> |
| 12 | + <Copyright>Copyright © Xamarin 2011-2016</Copyright> |
| 13 | + <PackageTags>Xamarin;Xamarin.Android</PackageTags> |
15 | 14 | </PropertyGroup> |
16 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
17 | | - <DebugSymbols>true</DebugSymbols> |
18 | | - <DebugType>full</DebugType> |
19 | | - <Optimize>false</Optimize> |
| 15 | + |
| 16 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
20 | 17 | <OutputPath>..\..\bin\Debug</OutputPath> |
21 | | - <DefineConstants>DEBUG;</DefineConstants> |
22 | | - <ErrorReport>prompt</ErrorReport> |
23 | | - <WarningLevel>4</WarningLevel> |
24 | | - <ConsolePause>false</ConsolePause> |
25 | 18 | </PropertyGroup> |
26 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
27 | | - <DebugType>full</DebugType> |
28 | | - <Optimize>true</Optimize> |
| 19 | + |
| 20 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
29 | 21 | <OutputPath>..\..\bin\Release</OutputPath> |
30 | | - <ErrorReport>prompt</ErrorReport> |
31 | | - <WarningLevel>4</WarningLevel> |
32 | | - <ConsolePause>false</ConsolePause> |
33 | 22 | </PropertyGroup> |
| 23 | + |
34 | 24 | <ItemGroup> |
35 | | - <PackageReference Include="MicroBuild.Core"> |
36 | | - <Version>0.3.0</Version> |
37 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 25 | + <PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="0.4.1"> |
38 | 26 | <PrivateAssets>all</PrivateAssets> |
| 27 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
39 | 28 | </PackageReference> |
40 | 29 | </ItemGroup> |
| 30 | + |
41 | 31 | <ItemGroup> |
42 | 32 | <FilesToSign Include="$(OutDir)\Xamarin.Android.Tools.AndroidSdk.dll"> |
43 | 33 | <Authenticode>Microsoft400</Authenticode> |
44 | 34 | </FilesToSign> |
45 | 35 | </ItemGroup> |
46 | | - <ItemGroup> |
47 | | - <Reference Include="System" /> |
48 | | - <Reference Include="System.Xml" /> |
49 | | - <Reference Include="System.Xml.Linq" /> |
50 | | - </ItemGroup> |
51 | | - <ItemGroup> |
52 | | - <Compile Include="Properties\AssemblyInfo.cs" /> |
53 | | - <Compile Include="AndroidTargetArch.cs" /> |
54 | | - <Compile Include="OS.cs" /> |
55 | | - <Compile Include="AndroidVersion.cs" /> |
56 | | - <Compile Include="AndroidVersions.cs" /> |
57 | | - <Compile Include="AndroidSdkInfo.cs" /> |
58 | | - <Compile Include="JdkInfo.cs" /> |
59 | | - <Compile Include="Sdks\AndroidSdkBase.cs" /> |
60 | | - <Compile Include="Sdks\AndroidSdkUnix.cs" /> |
61 | | - <Compile Include="Sdks\AndroidSdkWindows.cs" /> |
62 | | - <Compile Include="ProcessUtils.cs" /> |
63 | | - <Compile Include="AndroidAppManifest.cs" /> |
64 | | - <Compile Include="FileUtil.cs" /> |
65 | | - </ItemGroup> |
66 | | - <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
67 | | - <ItemGroup> |
68 | | - <Folder Include="Sdks\" /> |
69 | | - </ItemGroup> |
| 36 | + |
70 | 37 | </Project> |
0 commit comments