27 lines
929 B
XML
27 lines
929 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<PackageId>BMapSharp</PackageId>
|
|
<Title>BMapSharp</Title>
|
|
<Version>0.4.0</Version>
|
|
<Authors>yyc12345</Authors>
|
|
<Description>The C# binding to BMap.</Description>
|
|
<Company>BearKidsTeam</Company>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</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>
|