説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Solution.cs 546B

123456789101112
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. namespace Microsoft.Unity.VisualStudio.Editor
  6. {
  7. internal class Solution
  8. {
  9. public SolutionProjectEntry[] Projects { get; set; }
  10. public SolutionProperties[] Properties { get; set; }
  11. }
  12. }