-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathIntegrationTester.csproj
70 lines (70 loc) · 2.77 KB
/
IntegrationTester.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
<?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>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{DBD8D4D9-61AC-4E75-8CDC-CABE7033A040}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Google</RootNamespace>
<AssemblyName>Google.IntegrationTester</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="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\Runner.cs" />
<Compile Include="src\TestCase.cs" />
<Compile Include="src\TestCaseResult.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</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>