-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiraiNotes.Android.UiTests.csproj
More file actions
63 lines (63 loc) · 2.84 KB
/
MiraiNotes.Android.UiTests.csproj
File metadata and controls
63 lines (63 loc) · 2.84 KB
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
<?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>{1013313E-D21A-4886-8F9C-7FA95FF8A5D7}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>MiraiNotes.Android.UiTests</RootNamespace>
<AssemblyName>MiraiNotes.Android.UiTests</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="Xamarin.UITest" Version="3.0.7" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Include="AppManager.cs" />
<Compile Include="Pages\BaseView.cs" />
<Compile Include="Pages\Dialogs\BaseDialog.cs" />
<Compile Include="Extensions\AppPickerExtensions.cs" />
<Compile Include="Pages\Dialogs\ManageTaskListsDialog.cs" />
<Compile Include="Pages\LoginPage.cs" />
<Compile Include="Pages\NewTaskPage.cs" />
<Compile Include="Pages\Dialogs\TaskMenuOptionsDialog.cs" />
<Compile Include="Pages\SettingsPage.cs" />
<Compile Include="Pages\TasksPage.cs" />
<Compile Include="Tests\BaseTest.cs" />
<Compile Include="AppInitializer.cs" />
<Compile Include="Pages\BasePage.cs" />
<Compile Include="PlatformQuery.cs" />
<Compile Include="Tests\LoginPageTests.cs" />
<Compile Include="Tests\Dialogs\ManageTaskListsDialogTests.cs" />
<Compile Include="Tests\NewTaskPageTests.cs" />
<Compile Include="Tests\ReplTests.cs" />
<Compile Include="Tests\Dialogs\TaskMenuOptionsDialogTests.cs" />
<Compile Include="Tests\SettingsPageTests.cs" />
<Compile Include="Tests\TasksPageTests.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>