| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 namespace NativeClientVSAddIn | 5 namespace NativeClientVSAddIn |
| 6 { | 6 { |
| 7 using System; | 7 using System; |
| 8 using System.Collections.Generic; | 8 using System.Collections.Generic; |
| 9 using System.Linq; | 9 using System.Linq; |
| 10 using System.Windows.Forms; | 10 using System.Windows.Forms; |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 private void AssertValidPlatform() | 414 private void AssertValidPlatform() |
| 415 { | 415 { |
| 416 if (ProjectPlatform == ProjectPlatformType.Other) | 416 if (ProjectPlatform == ProjectPlatformType.Other) |
| 417 { | 417 { |
| 418 throw new Exception(string.Format( | 418 throw new Exception(string.Format( |
| 419 "Unsupported platform type: {0} platform", configuration_.Platform.Nam
e)); | 419 "Unsupported platform type: {0} platform", configuration_.Platform.Nam
e)); |
| 420 } | 420 } |
| 421 } | 421 } |
| 422 } | 422 } |
| 423 } | 423 } |
| OLD | NEW |