aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.IntegrationTesting/TestCredentials.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-16 09:36:11 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-16 16:59:43 -0700
commit317b8acf995ef3360df4c04ba180355e6b62e59c (patch)
tree52a58c0e7420526bae8fcad9ddcc7c1f861bc9f8 /src/csharp/Grpc.IntegrationTesting/TestCredentials.cs
parent474a574ba7ebd425d140c31b264c39b8e48d303d (diff)
migrate everything to netstandard1.5
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting/TestCredentials.cs')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/TestCredentials.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/TestCredentials.cs b/src/csharp/Grpc.IntegrationTesting/TestCredentials.cs
index 774563d752..60b9cf4e0b 100644
--- a/src/csharp/Grpc.IntegrationTesting/TestCredentials.cs
+++ b/src/csharp/Grpc.IntegrationTesting/TestCredentials.cs
@@ -90,7 +90,7 @@ namespace Grpc.IntegrationTesting
private static string GetPath(string relativePath)
{
- var assemblyDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
+ var assemblyDir = Path.GetDirectoryName(typeof(TestCredentials).GetTypeInfo().Assembly.Location);
return Path.Combine(assemblyDir, relativePath);
}
}