yyc12345
7c88b3614a
- send message in console if PyBMap fail to load native dynamic library. this is good for user experience. - remove snippet from BMap bindings generator. We now insert generated code manually. - fix C sharp code generation issue in BMap bidnings generator. - add some content for BMapSharp.
24 lines
784 B
XML
24 lines
784 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<PackageId>BMapSharp</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>yyc12345</Authors>
|
|
<Company>BearKidsTeam</Company>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
|
|
</Project>
|