-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNauti-Control Wear.csproj
39 lines (39 loc) · 1.78 KB
/
Nauti-Control Wear.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
<SupportedOSPlatformVersion>26</SupportedOSPlatformVersion>
<RootNamespace>Nauti_Control_Wear</RootNamespace>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationId>com.nauti-control.Nauti-Control-Wear</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<MSBuildWarningsAsMessages>$(MSBuildWarningsAsMessages);XA4218</MSBuildWarningsAsMessages>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<RunAOTCompilation>False</RunAOTCompilation>
<PublishTrimmed>False</PublishTrimmed>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<RunAOTCompilation>False</RunAOTCompilation>
<PublishTrimmed>False</PublishTrimmed>
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
<DebugSymbols>True</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\drawable\box_bg.xml" />
<None Remove="Resources\drawable\btdevice.xml" />
<None Remove="Resources\drawable\button.xml" />
<None Remove="Resources\drawable\remote.xml" />
<None Remove="Resources\drawable\speedo.xml" />
<None Remove="Resources\layout\bluetooth_item.xml" />
<None Remove="Resources\layout\bluetooth_scan.xml" />
<None Remove="Resources\layout\data_display.xml" />
<None Remove="Resources\layout\main_menu.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.AndroidX.ConstraintLayout" Version="2.1.4.16" />
<PackageReference Include="Xamarin.AndroidX.Wear" Version="1.3.0.10" />
</ItemGroup>
</Project>