private void CopyNativeBinariesToBin(Project project, string repositoryPath, IEnumerable <PreinstalledPackageInfo> packageInfos)
        {
            // By convention, we copy all files under the NativeBinaries folder under package root to the bin folder of the website
            IEnumerable <PackageName> packageNames = packageInfos.Select(pi => new PackageName(pi.Id, pi.Version));

            _websiteHandler.CopyNativeBinaries(project, new PhysicalFileSystem(repositoryPath), packageNames);
        }