This adds the snk file toi the project, but it does not display in the project panel unless you reload the solution.
Index: Signing.cs
===================================================================
--- Signing.cs (revision 3129)
+++ Signing.cs (working copy)
@@ -106,6 +106,8 @@
createKey.KeyFile = project.Name;
if (createKey.ShowDialog(WorkbenchSingleton.MainForm) == DialogResult.OK) {
keyFile.Text = createKey.KeyFile;
+ project.MSBuildProject.AddNewItem("None", createKey.KeyFile, true);
+ project.Save();
return;
}
}