Example #1
0
        static void Main(string[] args)
        {
            PdbRewriterHelper.Logger = new ConsoleLogger();

            //var t2 = @"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6\Microsoft.CSharp.dll";
            var t1 = @"E:\dev\PdbRewriter\ConsoleApplication8\GoogleAnalyticsTracker.Core.4.2.7\lib\portable45\GoogleAnalyticsTracker.Core.dll";

            PdbRewriterHelper.TryRewrite(t1);
        }
Example #2
0
        public override bool Execute()
        {
            if (this.Files != null)
            {
                foreach (var item in Files)
                {
                    var dllPath = item.ToString();
                    PdbRewriterHelper.TryRewrite(dllPath);
                }
            }

            return(true);
        }