<?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>CS1577</ErrorName>
  <Examples>
    <string>// CS1577: Referenced assembly `CS1577-lib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' does not have a strong name
// Line: 0
// Compiler options: -r:CS1577-lib.dll

[assembly: System.Reflection.AssemblyKeyFileAttribute ("cs1577.snk")]

class Test
{
	static void Main ()
	{
		C c = new C ();
	}
}
</string>
    <string>// CS1577: Referenced assembly `CS1577-lib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' does not have a strong name
// Line: 0
// Compiler options: -keyfile:cs1577.snk -r:CS1577-lib.dll

class Test
{
	static void Main ()
	{
		C c = new C ();
	}
}
</string>
  </Examples>
</ErrorDocumentation>