diff options
Diffstat (limited to 'mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/SubToolset.cs')
-rw-r--r-- | mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/SubToolset.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/SubToolset.cs b/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/SubToolset.cs new file mode 100644 index 0000000000..0b4ad39224 --- /dev/null +++ b/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/SubToolset.cs @@ -0,0 +1,22 @@ +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; } + } +} + |