Beispiel #1
0
 private void InstallLoaderTargets(ProcessedArgs args)
 {
     if (args.InstallLoaderTargets)
     {
         var installer = factory.CreateTargetInstaller();
         Debug.Assert(installer != null, "Factory should not return null");
         installer.InstallLoaderTargets(Directory.GetCurrentDirectory());
     }
     else
     {
         logger.LogDebug(Resources.MSG_NotCopyingTargets);
     }
 }