-
Notifications
You must be signed in to change notification settings - Fork 88
/
HydrographicsSample.Desktop.csproj
35 lines (32 loc) · 1.26 KB
/
HydrographicsSample.Desktop.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Esri.ArcGISRuntime.WPF" Version="200.3.0" />
<PackageReference Include="Esri.ArcGISRuntime.Hydrography" Version="200.3.0" />
</ItemGroup>
<ItemGroup>
<Content Include="..\SampleData\GB5X01NE.000">
<Link>SampleData\GB5X01NE.000</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\SampleData\GB5X01NW.000">
<Link>SampleData\GB5X01NW.000</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\SampleData\GB5X01SE.000">
<Link>SampleData\GB5X01SE.000</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\SampleData\GB5X01SW.000">
<Link>SampleData\GB5X01SW.000</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>