forked from bertt/mapbox-vector-tile-cs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVelloWindowsFormSample.csproj
More file actions
28 lines (23 loc) · 882 Bytes
/
Copy pathVelloWindowsFormSample.csproj
File metadata and controls
28 lines (23 loc) · 882 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="VelloSharp.Integration.WinForms" Version="0.5.0-alpha.3" />
<PackageReference Include="VelloSharp.Native.Vello" Version="0.5.0-alpha.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\mapbox.vector.tile.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="cadastral.pbf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>