CheckFileOutOfSourceControl() public static method

public static CheckFileOutOfSourceControl ( string file ) : void
file string
return void
Exemplo n.º 1
0
        static void Saving(object sender, EventArgs e)
        {
            var manifest = (Manifest)sender;

            if (manifest != null && !string.IsNullOrEmpty(manifest.FileName))
            {
                ProjectHelpers.CheckFileOutOfSourceControl(manifest.FileName);
            }
        }
Exemplo n.º 2
0
 static void Copying(object sender, FileCopyEventArgs e)
 {
     Logger.Log($"Copying {Path.GetFileName(e.Destination)}");
     ProjectHelpers.CheckFileOutOfSourceControl(e.Destination);
 }