Hi
I have a problem with libzip archivum in VisualStudio 2017. Adding libzip using NuGet package managing.
Code:
#include <stdio.h>
#include <zip.h>
#include <stdlib.h>


int main()
{
    zip_open("C:/Users/arch.zip", 0, 0);
}
Compiling this code give me error
"Unresolved external symbol _imp_zip_open". Can you help me please.