32 lines
798 B
XML
32 lines
798 B
XML
|
<Project Sdk="Tizen.NET.Sdk/1.0.3">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>tizen40</TargetFramework>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|||
|
<DebugType>portable</DebugType>
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|||
|
<DebugType>None</DebugType>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Folder Include="lib\" />
|
|||
|
<Folder Include="res\" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Tizen.Wearable.CircularUI" Version="1.2.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Update="WatchFaceApplication.xaml.cs">
|
|||
|
<DependentUpon>WatchFaceApplication.xaml</DependentUpon>
|
|||
|
</Compile>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|
|||
|
|