aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Core.Native/Utility/TestData.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-22 20:00:30 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:47:06 -0700
commitaa0bd9f66dabc6460f93cf9a029e06b079f10db8 (patch)
treefd7a3f883a4cc0473e883105eadee3cca668cd68 /src/test/WixToolsetTest.Core.Native/Utility/TestData.cs
parenta2f0de28fc0f1ab71d4685c77f0b21d946f3e702 (diff)
downloadwix-aa0bd9f66dabc6460f93cf9a029e06b079f10db8.tar.gz
wix-aa0bd9f66dabc6460f93cf9a029e06b079f10db8.tar.bz2
wix-aa0bd9f66dabc6460f93cf9a029e06b079f10db8.zip
Move Core.Native into wix
Diffstat (limited to 'src/test/WixToolsetTest.Core.Native/Utility/TestData.cs')
-rw-r--r--src/test/WixToolsetTest.Core.Native/Utility/TestData.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/WixToolsetTest.Core.Native/Utility/TestData.cs b/src/test/WixToolsetTest.Core.Native/Utility/TestData.cs
deleted file mode 100644
index cd9c6318..00000000
--- a/src/test/WixToolsetTest.Core.Native/Utility/TestData.cs
+++ /dev/null
@@ -1,17 +0,0 @@
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
3namespace WixToolsetTest.CoreNative.Utility
4{
5 using System;
6 using System.IO;
7
8 public class TestData
9 {
10 public static string LocalPath => Path.GetDirectoryName(new Uri(System.Reflection.Assembly.GetExecutingAssembly().CodeBase).LocalPath);
11
12 public static string Get(params string[] paths)
13 {
14 return Path.Combine(LocalPath, Path.Combine(paths));
15 }
16 }
17}