<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1699</ErrorName>
  <Examples>
    <string>// CS1699: Use compiler option `keycontainer' or appropriate project settings instead of `AssemblyKeyNameAttribute' attribute
// Line: 7
// Compiler options: -warnaserror -warn:4

using System.Reflection;

[assembly:AssemblyKeyNameAttribute ("container")]
</string>
    <string>// CS1699: Use compiler option `keyfile' or appropriate project settings instead of `AssemblyKeyFile' attribute
// Line: 7
// Compiler options: -warnaserror -warn:4

using System.Reflection;

[assembly:AssemblyKeyFile ("key.snk")]
</string>
    <string>// CS1699: Use compiler option `delaysign' or appropriate project settings instead of `AssemblyDelaySign' attribute
// Line: 7
// Compiler options: -warnaserror -warn:4

using System.Reflection;

[assembly:AssemblyDelaySign (true)]
</string>
  </Examples>
</ErrorDocumentation>