main
cs 15 lines 587 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolsetTest.CoreIntegration
4 {
5 using Example.Extension;
6
7 internal class ExtensionPaths
8 {
9 #if NETFRAMEWORK
10 public static readonly string ExampleExtensionPath = new Uri(typeof(ExampleExtensionFactory).Assembly.CodeBase).LocalPath;
11 #else
12 public static readonly string ExampleExtensionPath = typeof(ExampleExtensionFactory).Assembly.Location;
13 #endif
14 }
15 }