logic: fix more Visual Studio plugin issues

* using .Net framework version 4.6.1 in all projects
* implemented exception handling in VCFileWrapperFactory
* moved logging in separate assembly
* enabled logging in wrapper code
This commit is contained in:
malte_langkabel
2017-06-06 15:46:14 +02:00
parent fc36cc25ca
commit b659e81515
25 changed files with 326 additions and 116 deletions
@@ -1,4 +1,5 @@
using Microsoft.VisualStudio.VCProjectEngine;
using CoatiSoftware.SourcetrailPlugin.Logging;
using Microsoft.VisualStudio.VCProjectEngine;
using System;
using System.Collections;
@@ -72,9 +73,9 @@ namespace VCProjectEngineWrapper
}
catch (Exception e)
{
// Logging.Logging.LogError("Failed to retreive project configuration: " + e.Message);
Logging.LogError("Failed to retreive project configuration: " + e.Message);
}
// Logging.Logging.LogError("Failed to find project config matching with \"" + configurationName + "\"");
Logging.LogError("Failed to find project config matching with \"" + configurationName + "\"");
return new
#if (VS2012)