Skip to content

Commit ccca5aa

Browse files
committed
Merge branch 'csprojsubtypeinfos-fields-to-members' into 'dev'
convert CSProjSubTypeInfos fields to members See merge request Sharpmake/sharpmake!264
2 parents e4da5b5 + 01a7d3b commit ccca5aa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sharpmake.Generators/VisualStudio/Csproj.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2778,16 +2778,16 @@ private void WriteEvents(Project.Configuration conf, Options.ExplicitOptions opt
27782778
[Serializable]
27792779
public class CsProjSubTypesInfos
27802780
{
2781-
public string CsProjFullPath;
2782-
public DateTime LastWriteTime;
2783-
public List<SubTypeInfo> SubTypeInfos;
2781+
public string CsProjFullPath { get; set; }
2782+
public DateTime LastWriteTime { get; set; }
2783+
public List<SubTypeInfo> SubTypeInfos { get; set; }
27842784

27852785
[Serializable]
27862786
public class SubTypeInfo
27872787
{
2788-
public string FileName;
2789-
public DateTime LastWriteTime;
2790-
public string SubType;
2788+
public string FileName { get; set; }
2789+
public DateTime LastWriteTime { get; set; }
2790+
public string SubType { get; set; }
27912791
}
27922792
}
27932793

0 commit comments

Comments
 (0)