2012-05-04 12:52:20 +02:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-08-04 21:38:58 +02:00
|
|
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2012-12-09 19:35:44 +01:00
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
2012-12-09 19:35:44 +01:00
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
2017-08-04 21:38:58 +02:00
|
|
|
|
<ProjectGuid>{F92DA93D-75DB-4308-A5F9-6B4C3908A675}</ProjectGuid>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2012-11-22 21:42:29 +01:00
|
|
|
|
<RootNamespace>WpfApplication</RootNamespace>
|
|
|
|
|
|
<AssemblyName>WpfApplication</AssemblyName>
|
2019-07-19 07:54:48 +02:00
|
|
|
|
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2017-08-04 21:38:58 +02:00
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
2016-07-03 00:03:38 +02:00
|
|
|
|
<TargetFrameworkProfile />
|
2019-07-19 07:54:48 +02:00
|
|
|
|
<NuGetPackageImportStamp>
|
|
|
|
|
|
</NuGetPackageImportStamp>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
</PropertyGroup>
|
2012-12-09 19:35:44 +01:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
2019-12-08 22:28:04 +01:00
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
</PropertyGroup>
|
2012-12-09 19:35:44 +01:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2017-08-04 21:38:58 +02:00
|
|
|
|
<DebugType>pdbonly</DebugType>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
2019-12-08 22:28:04 +01:00
|
|
|
|
<DefineConstants>
|
|
|
|
|
|
</DefineConstants>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System" />
|
2019-06-04 22:03:25 +02:00
|
|
|
|
<Reference Include="System.Net.Http" />
|
2012-07-03 18:03:56 +02:00
|
|
|
|
<Reference Include="System.Runtime.Caching" />
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<Reference Include="System.Xaml">
|
|
|
|
|
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
|
|
|
|
|
</Reference>
|
|
|
|
|
|
<Reference Include="WindowsBase" />
|
|
|
|
|
|
<Reference Include="PresentationCore" />
|
|
|
|
|
|
<Reference Include="PresentationFramework" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ApplicationDefinition Include="App.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
</ApplicationDefinition>
|
|
|
|
|
|
<Page Include="MainWindow.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
</Page>
|
2017-08-04 21:38:58 +02:00
|
|
|
|
<Compile Include="..\Shared\MapLayers.cs">
|
|
|
|
|
|
<Link>MapLayers.cs</Link>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<Compile Include="..\Shared\MapViewModel.cs">
|
|
|
|
|
|
<Link>MapViewModel.cs</Link>
|
|
|
|
|
|
</Compile>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<Compile Include="App.xaml.cs">
|
|
|
|
|
|
<DependentUpon>App.xaml</DependentUpon>
|
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
|
</Compile>
|
2012-12-09 19:35:44 +01:00
|
|
|
|
<Compile Include="LocationToVisibilityConverter.cs" />
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<Compile Include="MainWindow.xaml.cs">
|
|
|
|
|
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2014-12-17 21:38:28 +01:00
|
|
|
|
<Compile Include="OutlinedText.cs" />
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<AppDesigner Include="Properties\" />
|
|
|
|
|
|
</ItemGroup>
|
2012-12-09 19:35:44 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="App.config" />
|
|
|
|
|
|
</ItemGroup>
|
2013-04-12 19:59:16 +02:00
|
|
|
|
<ItemGroup>
|
2017-08-04 21:38:58 +02:00
|
|
|
|
<Resource Include="..\Shared\10_535_330.jpg">
|
2013-11-17 16:52:03 +01:00
|
|
|
|
<Link>10_535_330.jpg</Link>
|
|
|
|
|
|
</Resource>
|
2013-04-12 19:59:16 +02:00
|
|
|
|
</ItemGroup>
|
2019-12-08 22:28:04 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj">
|
|
|
|
|
|
<Project>{62f1726b-3144-49f4-8bcc-94160a3b2186}</Project>
|
|
|
|
|
|
<Name>MapControl.WPF</Name>
|
|
|
|
|
|
</ProjectReference>
|
2020-03-20 18:12:56 +01:00
|
|
|
|
<ProjectReference Include="..\..\SQLiteCache\WPF\SQLiteCache.WPF.csproj">
|
|
|
|
|
|
<Project>{0109c2f0-ba2c-420f-b2ca-db5b29b1a349}</Project>
|
|
|
|
|
|
<Name>SQLiteCache.WPF</Name>
|
|
|
|
|
|
</ProjectReference>
|
2019-12-08 22:28:04 +01:00
|
|
|
|
</ItemGroup>
|
2012-05-04 12:52:20 +02:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
|
</Target>
|
|
|
|
|
|
<Target Name="AfterBuild">
|
|
|
|
|
|
</Target>
|
|
|
|
|
|
-->
|
|
|
|
|
|
</Project>
|