3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
21 lines
484 B
C#
21 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.Build.Execution;
|
|
|
|
namespace Microsoft.Build.Evaluation
|
|
{
|
|
public
|
|
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; }
|
|
}
|
|
}
|
|
|