This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Reflection; | |
| using System.Linq; | |
| namespace DelegateTesting | |
| { | |
| public class Program | |
| { | |
| public static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#@ template debug="true" hostspecific="true" language="C#" #> | |
| <#@ output encoding="utf-8" extension=".cs"#> | |
| <#@ assembly name="EnvDTE" #> | |
| <#@ assembly name="EnvDTE80" #> | |
| <#@ assembly name="System.Core" #> | |
| <#@ assembly name="System.Configuration" #> | |
| <#@ import namespace="System.Collections.Generic" #> | |
| <#@ import namespace="System.Configuration" #> | |
| <#@ import namespace="System.Text.RegularExpressions" #> | |
| <#@ import namespace="EnvDTE" #> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private string GetFolderPath() | |
| { | |
| var currentAssemblyPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase).Replace(@"file:\", string.Empty); | |
| var relativePath = Path.Combine(currentAssemblyPath, @"..\folder"); | |
| return Path.GetFullPath(relativePath); | |
| } |