@@ -282,7 +282,7 @@ void UpdateRecentProjectsList()
282
282
}
283
283
284
284
// first check if whole folder exists, if not, skip
285
- if ( Directory . Exists ( projectPath ) == false )
285
+ if ( Directory . Exists ( projectPath ) == false )
286
286
{
287
287
continue ;
288
288
}
@@ -305,6 +305,12 @@ void UpdateRecentProjectsList()
305
305
306
306
string csprojFile = Path . Combine ( projectPath , projectName + ".csproj" ) ;
307
307
308
+ // solution only
309
+ if ( File . Exists ( csprojFile ) == false )
310
+ {
311
+ csprojFile = Path . Combine ( projectPath , projectName + ".sln" ) ;
312
+ }
313
+
308
314
// editor only project
309
315
if ( File . Exists ( csprojFile ) == false )
310
316
{
@@ -878,15 +884,15 @@ private void btnOpenLogFolder_Click(object sender, EventArgs e)
878
884
private void gridRecent_ColumnWidthChanged ( object sender , DataGridViewColumnEventArgs e )
879
885
{
880
886
List < int > gridWidths ;
881
- if ( Properties . Settings . Default . gridColumnWidths != null )
887
+ if ( Properties . Settings . Default . gridColumnWidths != null )
882
888
{
883
889
gridWidths = new List < int > ( Properties . Settings . Default . gridColumnWidths ) ;
884
890
}
885
891
else
886
892
{
887
893
gridWidths = new List < int > ( ) ;
888
894
}
889
-
895
+
890
896
// restore data grid view widths
891
897
var colum = gridRecent . Columns [ 0 ] ;
892
898
for ( int i = 0 ; i < gridRecent . Columns . Count ; ++ i )
@@ -1144,7 +1150,7 @@ void CheckUpdates()
1144
1150
}
1145
1151
else
1146
1152
{
1147
- SetStatus ( "No updates available. Current release is " + ( float . Parse ( previousGitRelease ) + 0.01f ) ) ;
1153
+ SetStatus ( "No updates available. Current release is " + ( float . Parse ( previousGitRelease ) + 0.01f ) ) ;
1148
1154
}
1149
1155
}
1150
1156
0 commit comments