Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 26, 2015 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/7149521 to your computer and use it in GitHub Desktop.
Save Fhernd/7149521 to your computer and use it in GitHub Desktop.
Código de demostración para la asignación de un nombre seguro a un assembly.
using System;
using System.Reflection;
[assembly:AssemblyVersion("1.1.2.6")]
[assembly:AssemblyKeyName("MiLlave")]
namespace NombresSeguros
{
public class Programa
{
public static void Main ()
{
Console.WriteLine ("Bienvenido al blog «OrtizOL Experiencias Construcción Software»");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment