<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1616</ErrorName>
  <Examples>
    <string>// CS1616: Option `keycontainer' overrides attribute `System.Reflection.AssemblyKeyNameAttribute' given in a source file or added module
// Line: 0
// Compiler options: -keycontainer:CS1616.snk -warnaserror

using System.Reflection;

[assembly: AssemblyKeyNameAttribute("mono.snk")]
</string>
    <string>// CS1616: Option `keyfile' overrides attribute `System.Reflection.AssemblyKeyFileAttribute' given in a source file or added module
// Line: 0
// Compiler options: -keyfile:CS1616.snk -warnaserror

using System.Reflection;

[assembly: AssemblyKeyFile("mono.snk")]

class C
{
    public static void Main () {}
}</string>
  </Examples>
</ErrorDocumentation>