<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <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 ("InternalsVisibleTest.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>