Exemple #1
0
    static string GetPathToPeVerify()
    {
        var pathToPeVerify = SdkToolsHelper.GetSdkToolPath("peverify.exe");

#if XUNIT
        Skip.IfNot(File.Exists(pathToPeVerify));
#endif
        return(pathToPeVerify);
    }
Exemple #2
0
    static string GetPathToIldasm()
    {
        var path = SdkToolsHelper.GetSdkToolPath("ildasm.exe");

        if (!File.Exists(path))
        {
            Assert.Ignore("ildasm could not be found");
        }
        return(path);
    }
Exemple #3
0
    static string GetPathToPEVerify()
    {
        var path = SdkToolsHelper.GetSdkToolPath("peverify.exe");

        if (!File.Exists(path))
        {
            Assert.Ignore("PEVerify could not be found");
        }
        return(path);
    }