a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
505 B
C#
23 lines
505 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.Build.Execution;
|
|
|
|
namespace Microsoft.Build.Evaluation
|
|
{
|
|
#if NET_4_5
|
|
public
|
|
#endif
|
|
class SubToolset
|
|
{
|
|
internal SubToolset (IDictionary<string, ProjectPropertyInstance> properties, string subToolsetVersion)
|
|
{
|
|
Properties = properties;
|
|
SubToolsetVersion = subToolsetVersion;
|
|
}
|
|
|
|
public IDictionary<string, ProjectPropertyInstance> Properties { get; private set; }
|
|
public string SubToolsetVersion { get; private set; }
|
|
}
|
|
}
|
|
|