-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy pathJarResolverTests.csproj
75 lines (75 loc) · 3.81 KB
/
JarResolverTests.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
<?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>
<ProjectGuid>{593254D7-6358-40A6-B0C8-F0616BBF499D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>JarResolverTests</RootNamespace>
<AssemblyName>JarResolverTests</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<ReleaseVersion>1.2</ReleaseVersion>
<ProductVersion>12.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup>
<NUnityHintPath>$(SolutionDir)packages\NUnit.2.6.3\lib\</NUnityHintPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="nunit.framework">
<HintPath>$(NUnityHintPath)nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="src\Google.JarResolver.Tests\DependencyTests.cs" />
<Compile Include="src\Google.JarResolver.Tests\PlayServicesSupportTests.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="packages.config" />
<None Include="testData\extras\google\m2repository\test\artifact\7.0.0\artifact-7.0.0.aar" />
<None Include="testData\extras\google\m2repository\test\artifact\7.0.0\artifact-7.0.0.pom" />
<None Include="testData\extras\google\m2repository\test\artifact\8.1.0\artifact-8.1.0.aar" />
<None Include="testData\extras\google\m2repository\test\artifact\8.1.0\artifact-8.1.0.pom" />
<None Include="testData\extras\google\m2repository\test\artifact\maven-metadata.xml" />
<None Include="testData\extras\google\m2repository\test\subdep\0.9\subdep-0.9.aar" />
<None Include="testData\extras\google\m2repository\test\subdep\0.9\subdep-0.9.pom" />
<None Include="testData\extras\google\m2repository\test\subdep\1.1.0\subdep-1.1.0.aar" />
<None Include="testData\extras\google\m2repository\test\subdep\1.1.0\subdep-1.1.0.pom" />
<None Include="testData\extras\google\m2repository\test\subdep\maven-metadata.xml" />
<None Include="testData\extras\google\m2repository\test\transdep\1.0.0\transdep-1.0.0.aar" />
<None Include="testData\extras\google\m2repository\test\transdep\1.0.0\transdep-1.0.0.pom" />
<None Include="testData\extras\google\m2repository\test\transdep\maven-metadata.xml" />
<None Include="testData\extras\google\m2repository\test\artifact\8.2.0-alpha\artifact-8.2.0-alpha.pom" />
<None Include="testData\extras\google\m2repository\test\artifact\8.2.0-alpha\artifact-8.2.0-alpha.aar" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\JarResolverLib\JarResolverLib.csproj">
<Project>{CC4F239D-3C7F-4164-830F-9215AE15B32A}</Project>
<Name>JarResolverLib</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="testData\extras\google\m2repository\test\artifact\8.2.0-alpha\" />
</ItemGroup>
</Project>