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

52 lines
2.4 KiB
XML
Raw Normal View History

2021-11-17 21:23:29 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2021-07-01 22:07:46 +02:00
<PropertyGroup>
<OutputType>WinExe</OutputType>
2025-01-20 13:44:56 +01:00
<TargetFramework>net9.0-windows10.0.17763.0</TargetFramework>
<Platforms>x86;x64;ARM64</Platforms>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
2021-07-01 22:07:46 +02:00
<UseWinUI>true</UseWinUI>
2021-11-18 16:30:45 +01:00
<ApplicationManifest>app.manifest</ApplicationManifest>
<RootNamespace>SampleApplication</RootNamespace>
2022-01-11 19:42:12 +01:00
<AssemblyTitle>XAML Map Control WinUI Sample Application</AssemblyTitle>
2021-07-01 22:07:46 +02:00
<AnalysisLevel>none</AnalysisLevel>
<EnableMsixTooling>true</EnableMsixTooling>
2021-07-01 22:07:46 +02:00
<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>
2021-11-17 21:23:29 +01:00
<ItemGroup>
2022-01-11 19:42:12 +01:00
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
2022-12-05 23:34:30 +01:00
<Content Include="..\Shared\etna.kml" Link="etna.kml" />
2021-11-17 21:23:29 +01:00
<Content Include="Assets\SplashScreen.scale-200.png" />
<Content Include="Assets\LockScreenLogo.scale-200.png" />
<Content Include="Assets\Square150x150Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Assets\StoreLogo.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
</ItemGroup>
2021-07-01 22:07:46 +02:00
<ItemGroup>
2024-05-24 15:28:28 +02:00
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
<ProjectReference Include="..\..\MapUiTools\WinUI\MapUiTools.WinUI.csproj" />
2021-07-01 22:07:46 +02:00
</ItemGroup>
<ItemGroup>
2025-03-30 17:14:02 +02:00
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.3" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250310001" />
2024-10-15 07:52:56 +02:00
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" />
2024-05-24 15:28:28 +02:00
<Manifest Include="$(ApplicationManifest)" />
2021-07-01 22:07:46 +02:00
</ItemGroup>
2021-11-17 21:23:29 +01:00
<!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
Tools extension to be activated for this project even if the Windows App SDK Nuget
package has not yet been restored -->
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'">
<ProjectCapability Include="Msix" />
</ItemGroup>
2021-07-01 22:07:46 +02:00
</Project>