Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 393 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 393 Bytes

Building the native library

mkdir -p InteropTestNative/obj && \
cd InteropTestNative/obj/ && \
cmake -GNinja .. -DCMAKE_INSTALL_PREFIX=../bin && \
ninja && \
ninja install

Building the managed test

dotnet test \
    --nologo --configuration Release \
    --verbosity "normal" --logger "console;verbosity=detailed" \
    NativeBinding.Tests/NativeBinding.Tests.csproj