-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Muxer.cs
47 lines (40 loc) · 1.21 KB
/
Muxer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Diagnostics;
using System.IO;
namespace Microsoft.DotNet.Cli.Utils
{
public class Muxer
{
public static readonly string MuxerName = "dotnet";
private readonly string _muxerPath;
internal string SharedFxVersion
{
get
{
var depsFile = new FileInfo(GetDataFromAppDomain("FX_DEPS_FILE"));
return depsFile.Directory.Name;
}
}
public string MuxerPath
{
get
{
if (_muxerPath == null)
{
throw new InvalidOperationException(LocalizableStrings.UnableToLocateDotnetMultiplexer);
}
return _muxerPath;
}
}
public Muxer()
{
_muxerPath = Process.GetCurrentProcess().MainModule.FileName;
}
public static string GetDataFromAppDomain(string propertyName)
{
return AppContext.GetData(propertyName) as string;
}
}
}