is it possible to make a method call from a postbuild event?
namespace Test
{
public class MyClass
{
public void DoSomething()
{
// Do something
}
}
}
Of course this class resides in a project whose build events I specify. Is there a way to call DoSomething as a postbuild event?