// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Projects { /// /// The solution file data for generator. /// public class Solution { /// /// The solution name. /// public string Name; /// /// The solution file path. /// public string Path; /// /// The workspace root directory path. /// public string WorkspaceRootPath; /// /// The projects. /// public Project[] Projects; /// /// The main project to use as solution default (eg. for build and for startup). /// public Project MainProject; } }