Esempio n. 1
0
 // Test constructor
 internal DotNetMSBuildSdkResolver(Func <string, string> getEnvironmentVariable, VSSettings vsSettings)
 {
     _getEnvironmentVariable = getEnvironmentVariable;
     _vsSettings             = vsSettings;
 }
Esempio n. 2
0
 public DotNetMSBuildSdkResolver(Func <string, string> getEnvironmentVariable, VSSettings vsSettings)
 {
     _getEnvironmentVariable = getEnvironmentVariable;
     _netCoreSdkResolver     = new NETCoreSdkResolver(getEnvironmentVariable, vsSettings);
 }
Esempio n. 3
0
 internal NETCoreSdkResolver(Func <string, string> getEnvironmentVariable, VSSettings vsSettings)
 {
     _getEnvironmentVariable = getEnvironmentVariable;
     _vsSettings             = vsSettings;
 }