2024-04-22 14:13:36 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-09-21 16:50:53 +08:00
|
|
|
|
|
2024-04-22 14:13:36 +08:00
|
|
|
|
<PackageId>BMapSharp</PackageId>
|
|
|
|
|
<Version>1.0.0</Version>
|
|
|
|
|
<Authors>yyc12345</Authors>
|
|
|
|
|
<Company>BearKidsTeam</Company>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-09-21 16:50:53 +08:00
|
|
|
|
<PropertyGroup Condition="$([System.OperatingSystem]::IsWindows())">
|
|
|
|
|
<DefineConstants>BMAP_OS_WINDOWS</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="$([System.OperatingSystem]::IsLinux()) Or $([System.OperatingSystem]::IsFreeBSD())">
|
|
|
|
|
<DefineConstants>BMAP_OS_LINUX</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="$([System.OperatingSystem]::IsMacOS())">
|
|
|
|
|
<DefineConstants>BMAP_OS_MACOS</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-04-22 14:13:36 +08:00
|
|
|
|
</Project>
|