parent
cb7ded95af
commit
f66c1d1c30
@ -0,0 +1,44 @@
|
||||
<?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>{DAB0A3A0-CD99-4819-A813-01F10D77BAB1}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>TestUnitaire</RootNamespace>
|
||||
<AssemblyName>TestUnitaire</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.2</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="nunit.framework">
|
||||
<HintPath>..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.UITest">
|
||||
<HintPath>..\packages\Xamarin.UITest.2.2.7\lib\net45\Xamarin.UITest.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Tests.cs" />
|
||||
<Compile Include="AppInitializer.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="NUnit" version="2.6.3" targetFramework="net472" />
|
||||
<package id="Xamarin.UITest" version="2.2.7" targetFramework="net472" />
|
||||
</packages>
|
@ -1,24 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:d="http://xamarin.com/schemas/2014/forms/design" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="TheGameExtreme.MainPage">
|
||||
<ContentPage
|
||||
xmlns="http://xamarin.com/schemas/2014/forms"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d"
|
||||
x:Class="TheGameExtreme.MainPage">
|
||||
<StackLayout>
|
||||
<!-- Place new controls here -->
|
||||
<StackLayout
|
||||
Orientation="Horizontal">
|
||||
<Label x:Name="pile0" Text="coucou:" />
|
||||
<Label x:Name="pile1" Text="hey"/>
|
||||
<Label x:Name="pile2" Text="hi"/>
|
||||
<Label x:Name="pile3" Text="hello"/>
|
||||
<Label x:Name="pile0" />
|
||||
<Label x:Name="pile1" />
|
||||
<Label x:Name="pile2" />
|
||||
<Label x:Name="pile3" />
|
||||
</StackLayout>
|
||||
<StackLayout x:Name="handCard"
|
||||
<ScrollView
|
||||
Orientation="Horizontal">
|
||||
<Button x:Uid="card1" x:Name="card1" Clicked="played" Text="Card 1" />
|
||||
<Button x:Uid="card2" x:Name="card2" Clicked="played" Text="Card 2" />
|
||||
<Button x:Uid="card3" x:Name="card3" Clicked="played" Text="Card 3" />
|
||||
<Button x:Uid="card4" x:Name="card4" Clicked="played" Text="Card 4" />
|
||||
<Button x:Uid="card5" x:Name="card5" Clicked="played" Text="Card 5" />
|
||||
<Button x:Uid="card6" x:Name="card6" Clicked="played" Text="Card 6" />
|
||||
<Button x:Uid="card7" x:Name="card7" Clicked="played" Text="Card 7" />
|
||||
<StackLayout
|
||||
Orientation="Horizontal">
|
||||
<Button CommandParameter="card1" x:Name="card1" Clicked="played" />
|
||||
<Button CommandParameter="card2" x:Name="card2" Clicked="played" />
|
||||
<Button CommandParameter="card3" x:Name="card3" Clicked="played" />
|
||||
<Button CommandParameter="card4" x:Name="card4" Clicked="played" />
|
||||
<Button CommandParameter="card5" x:Name="card5" Clicked="played" />
|
||||
<Button CommandParameter="card6" x:Name="card6" Clicked="played" />
|
||||
<Button CommandParameter="card7" x:Name="card7" Clicked="played" />
|
||||
</StackLayout>
|
||||
</ScrollView>
|
||||
<Button Text="End Turn" Clicked="endTurn"/>
|
||||
</StackLayout>
|
||||
</ContentPage>
|
Loading…
Reference in new issue