Ejemplo n.º 1
0
        public static void NotifyAssemblyInfoChange(string file, string asmName)
        {
            AssemblyInformationEventArgs args = new AssemblyInformationEventArgs(file, asmName);

            if (AssemblyInformationChanged != null)
            {
                AssemblyInformationChanged(null, args);
            }
        }
Ejemplo n.º 2
0
		public static void NotifyAssemblyInfoChange (string file, string asmName)
		{
			AssemblyInformationEventArgs args = new AssemblyInformationEventArgs (file, asmName);
			if (AssemblyInformationChanged != null)
				AssemblyInformationChanged (null, args);
		}