| Index: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
|
| diff --git a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
|
| index 9ebae9653a089f5c1efb6ea8fa3c6a01b29c6b32..4268f5b16073a4760f14a8e4d73e8b8b4cf5ce23 100644
|
| --- a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
|
| +++ b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
|
| @@ -169,14 +169,14 @@ namespace NativeClientVSAddIn
|
| }
|
|
|
| /// <summary>
|
| - /// Gets or sets the full toolchain and platform name. Ex: win_x86_newlib
|
| + /// Gets or sets the toolchain name. Ex: newlib.
|
| /// </summary>
|
| - public string PlatformToolset
|
| + public string ToolchainName
|
| {
|
| get
|
| {
|
| - AssertValidPlatform();
|
| - return GetProperty("ConfigurationGeneral", "PlatformToolset");
|
| + AssertNaCl();
|
| + return GetProperty("ConfigurationGeneral", "ToolchainName");
|
| }
|
|
|
| protected set
|
|
|