﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1548</ErrorName>
  <Examples>
    <string>// cs1548: Error while signing the assembly (invalid strongname file)
// Line: 6

using System.Reflection;

[assembly: AssemblyKeyFile ("cs1548-2.cs")]

class MyClass {

	public static void Main (string [] args)
	{
	}
}
</string>
    <string>// cs1548: Missing private key in strongname file
// Line: 6

using System.Reflection;

[assembly: AssemblyKeyFile ("cs1548.pub")]

// where cs1548.pub is generated by:
// sn -k cs1548.snk
// sn -p cs1548.snk cs1548.pub

class MyClass {

	public static void Main (string [] args)
	{
	}
}
</string>
    <string>// cs1548: Error while signing the assembly (file not found)
// Line: 6

using System.Reflection;

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

class MyClass {

	public static void Main (string [] args)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>