XAML-Map-Control/SampleApps/WinUiApp/WinUiApp.csproj

46 lines
1.7 KiB
XML
Raw Normal View History

2021-07-01 22:07:46 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows10.0.19041</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
2021-10-28 20:26:51 +02:00
<RootNamespace>SampleApplication</RootNamespace>
2021-07-01 22:07:46 +02:00
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x64</Platforms>
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
<UseWinUI>true</UseWinUI>
<Product>XAML Map Control</Product>
2021-10-17 12:46:05 +02:00
<Version>6.1.0</Version>
2021-07-01 22:07:46 +02:00
<Description>XAML Map Control WinUI Sample Application</Description>
<Authors>Clemens Fischer</Authors>
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
<AnalysisLevel>none</AnalysisLevel>
</PropertyGroup>
2021-10-17 12:46:05 +02:00
2021-07-01 22:07:46 +02:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2021-10-17 12:46:05 +02:00
<DefineConstants>DEBUG;WINUI</DefineConstants>
2021-07-01 22:07:46 +02:00
</PropertyGroup>
2021-10-17 12:46:05 +02:00
2021-07-01 22:07:46 +02:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DefineConstants>WINUI</DefineConstants>
</PropertyGroup>
2021-10-17 12:46:05 +02:00
2021-07-01 22:07:46 +02:00
<ItemGroup>
2021-10-28 20:26:51 +02:00
<Compile Include="..\Shared\*.cs" />
2021-07-01 22:07:46 +02:00
</ItemGroup>
<ItemGroup>
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
</ItemGroup>
2021-07-01 22:07:46 +02:00
<ItemGroup>
2021-10-17 12:46:05 +02:00
<PackageReference Include="Microsoft.ProjectReunion" Version="0.8.5" />
<PackageReference Include="Microsoft.ProjectReunion.Foundation" Version="0.8.5" />
<PackageReference Include="Microsoft.ProjectReunion.WinUI" Version="0.8.5" />
2021-07-01 22:07:46 +02:00
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
</ItemGroup>
</Project>