forked from SharpMap/SharpMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWPFSamples.csproj
More file actions
46 lines (40 loc) · 1.66 KB
/
WPFSamples.csproj
File metadata and controls
46 lines (40 loc) · 1.66 KB
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
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)SharpMap.Common.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<Product>SharpMap WPF Sample</Product>
<Copyright>Copyright © 2014 Triona AB</Copyright>
<PackageTags>sharpmap wpf</PackageTags>
<Description>This package contains UI Compontents for Windows Presentation Foundation (WPF).</Description>
<ApplicationIcon />
<OutputType>WinExe</OutputType>
<StartupObject />
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\SharpMap.Layers.BruTile\SharpMap.Layers.BruTile.csproj" />
<ProjectReference Include="..\..\SharpMap.UI.WPF\SharpMap.UI.WPF.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ProjNet4GeoAPI" Version="1.4.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System.Windows" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
<Reference Include="WindowsFormsIntegration" />
</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>
</ItemGroup>
</Project>