예제 #1
0
파일: Verifier.cs 프로젝트: vadik007/Anotar
    static string GetPathToPeVerify()
    {
        var pathToPeVerify = SdkToolsHelper.GetSdkToolPath("peverify.exe");

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

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

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