diff --git a/LICENSE b/LICENSE
index 1cacbda86167c5f5629e9d3f8605295ad009460f..d5fdbb17f8bd9bcbd119191c248a3bebaddc9133 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2019 RWTH Aachen University
+Copyright (c) 2023 RWTH Aachen University
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/src/PIDMigrator/PIDMigrator.csproj b/src/PIDMigrator/PIDMigrator.csproj
index f31a267a12dba8cddcea3d2f58e63909cbdb5237..e79db54d7731064b92bf4670f216f0bd1e201e00 100644
--- a/src/PIDMigrator/PIDMigrator.csproj
+++ b/src/PIDMigrator/PIDMigrator.csproj
@@ -9,6 +9,7 @@
 
   <ItemGroup>
     <PackageReference Include="Coscine.Action" Version="3.*-*" />
+    <PackageReference Include="Coscine.ProxyApi" Version="3.0.3" />
   </ItemGroup>
 
 </Project>
diff --git a/src/PIDMigrator/Program.cs b/src/PIDMigrator/Program.cs
index 43cc77ff3149a6db8b31e84c4ec3b4b82291e4ca..15419cc0d4c3bcf1be8104dff4f0b5da6998ac61 100644
--- a/src/PIDMigrator/Program.cs
+++ b/src/PIDMigrator/Program.cs
@@ -34,7 +34,7 @@ public static class Program
         /*==============================================*/
 
         Console.WriteLine($"- Searching for PIDs containing \"{hostUrl}\" ...");
-        var pidMatches = epicClient.Search($"*{hostUrl}*"); // Define as wildcard with *<text>*
+        var pidMatches = epicClient.SearchAll($"*{hostUrl}*"); // Define as wildcard with *<text>*
         Console.WriteLine($"- Search yelded {pidMatches.Count()} results");
 
         var projectModel = new ProjectModel();