-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathAndroidResolver.csproj
103 lines (103 loc) · 4.29 KB
/
AndroidResolver.csproj
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>12.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{82EEDFBE-AFE4-4DEF-99D9-BC929747DD9A}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>PlayServicesResolver</RootNamespace>
<AssemblyName>Google.JarResolver</AssemblyName>
<ReleaseVersion>1.2</ReleaseVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;UNITY_EDITOR</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release</OutputPath>
<DefineConstants>DEBUG;UNITY_EDITOR</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup>
<UnityHintPath>$(SolutionDir)..\unity_dlls\</UnityHintPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="UnityEditor">
<HintPath>$(UnityHintPath)UnityEditor.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>$(UnityHintPath)UnityEngine.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="src\" />
<Folder Include="Google.JarResolver\" />
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\AndroidAbis.cs" />
<Compile Include="src\AndroidSdkManager.cs" />
<Compile Include="src\AndroidXmlDependencies.cs" />
<Compile Include="src\CommandLine.cs" />
<Compile Include="src\CommandLineDialog.cs" />
<Compile Include="src\EmbeddedResource.cs" />
<Compile Include="src\GradleResolver.cs" />
<Compile Include="src\GradleTemplateResolver.cs" />
<Compile Include="src\GradleWrapper.cs" />
<Compile Include="src\LocalMavenRepository.cs" />
<Compile Include="src\JavaUtilities.cs" />
<Compile Include="src\PlayServicesPreBuild.cs" />
<Compile Include="src\PlayServicesResolver.cs" />
<Compile Include="src\SettingsDialog.cs" />
<Compile Include="src\TextAreaDialog.cs" />
<Compile Include="src\UnityCompat.cs" />
<Compile Include="src\VersionNumber.cs" />
<Compile Include="src\XmlDependencies.cs" />
<Compile Include="..\JarResolverLib\src\Google.JarResolver\Dependency.cs">
<Link>Google.JarResolver\Dependency.cs</Link>
</Compile>
<Compile Include="..\JarResolverLib\src\Google.JarResolver\PlayServicesSupport.cs">
<Link>Google.JarResolver\PlayServicesSupport.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="scripts\gradle-template.zip">
<Link>scripts\gradle-template.zip</Link>
</EmbeddedResource>
<EmbeddedResource Include="scripts\download_artifacts.gradle">
<Link>scripts\download_artifacts.gradle</Link>
</EmbeddedResource>
<EmbeddedResource Include="scripts\settings.gradle">
<Link>scripts\settings.gradle</Link>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VersionHandler\VersionHandler.csproj">
<Project>{5378B37A-887E-49ED-A8AE-42FA843AA9DC}</Project>
<Name>VersionHandler</Name>
</ProjectReference>
<ProjectReference Include="..\VersionHandlerImpl\VersionHandlerImpl.csproj">
<Project>{1E162334-8EA2-440A-9B3A-13FD8FE5C22E}</Project>
<Name>VersionHandlerImpl</Name>
</ProjectReference>
</ItemGroup>
</Project>