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

40 lines
1.3 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2020-11-12 20:23:31 +01:00
<TargetFrameworks>net5.0-windows;net48</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>WpfApplication</RootNamespace>
<Product>XAML Map Control</Product>
2020-12-04 15:51:12 +01:00
<Version>5.6.0</Version>
<Description>XAML Map Control WPF Sample Application</Description>
<Authors>Clemens Fischer</Authors>
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2020-10-25 16:09:09 +01:00
<DefineConstants>DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2020-10-25 16:09:09 +01:00
<DefineConstants></DefineConstants>
</PropertyGroup>
<ItemGroup>
2020-10-25 16:09:09 +01:00
<Compile Include="..\Shared\*.cs" />
</ItemGroup>
<ItemGroup>
2020-10-25 16:09:09 +01:00
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime.Caching" />
</ItemGroup>
2012-05-04 12:52:20 +02:00
</Project>