anx.framework/Tools/ProjectConverter/VSSolutionProject.cs
SND\AstrorEnales_cp 18152ade3e Implemented Feature #1010 by replacing the MsBuild sln-Parsing with our own parser which
enables us to run the project converter on linux. Updated all projects via ProjectConverter.
2015-03-15 01:11:14 +01:00

22 lines
637 B
C#

using System;
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ProjectConverter
{
public class VsSolutionProject
{
public string ProjectName { get; set; }
public string RelativePath { get; set; }
public string ProjectGuid { get; set; }
public string TypeGuid { get; set; }
public bool IsCsProject
{
get { return RelativePath.EndsWith(".csproj", StringComparison.InvariantCultureIgnoreCase); }
}
}
}