I have solution with .NET Core project and C++ project. .NET Core project uses compiled C++ library via interop and DllImport. How can I configure my build process properly? I would like to have:
- Native library is built
- Native library is copied to output directory to my main application
Is it possible to do that with project.json and "dotnet build/publish" command?