-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHelloWorldExample.csproj
More file actions
executable file
·31 lines (25 loc) · 1.1 KB
/
HelloWorldExample.csproj
File metadata and controls
executable file
·31 lines (25 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../ProjectProperties/common.props" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RootNamespace>Tizen.NUI.Samples</RootNamespace>
<AssemblyName>NUISampleApplication</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>portable</DebugType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Tizen.NET" Version="10.0.0.*" />
<PackageReference Include="Tizen.NET.Sdk" Version="1.1.9" />
</ItemGroup>
<!-- <ItemGroup>
<ProjectReference Include="$(TizenFXDir)/Tizen.NUI/Tizen.NUI.csproj" />
<ProjectReference Include="$(TizenFXDir)/Tizen.NUI.Components/Tizen.NUI.Components.csproj" />
<ProjectReference Include="$(TizenFXDir)/Tizen.NUI.Wearable/Tizen.NUI.Wearable.csproj" />
</ItemGroup> -->
</Project>