| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <OutputType>Exe</OutputType> |
| <TargetFrameworks>net8.0;net10.0</TargetFrameworks> |
| <ImplicitUsings>enable</ImplicitUsings> |
| <Nullable>enable</Nullable> |
| <AssemblyName>Apache.Iggy.Benchmarks</AssemblyName> |
| <RootNamespace>Apache.Iggy.Benchmarks</RootNamespace> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\Iggy_SDK\Iggy_SDK.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="Microsoft.Extensions.Logging.Console" /> |
| </ItemGroup> |
| <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))"> |
| <DefineConstants>OS_WINDOWS</DefineConstants> |
| </PropertyGroup> |
| <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))"> |
| <DefineConstants>OS_LINUX</DefineConstants> |
| </PropertyGroup> |
| <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('FreeBSD'))"> |
| <DefineConstants>OS_FREEBSD</DefineConstants> |
| </PropertyGroup> |
| <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))"> |
| <DefineConstants>OS_MAC</DefineConstants> |
| </PropertyGroup> |
| |
| </Project> |