Migrate osu.Game project to VS2017 project structure

This commit is contained in:
smoogipoo
2017-10-30 22:24:11 +09:00
parent 5a8ed4c242
commit 04b271cce9
12 changed files with 45 additions and 1868 deletions

View File

@ -102,7 +102,7 @@ namespace osu.Game.Database
return null;
}
public new int SaveChanges(IDbContextTransaction transaction = null)
public int SaveChanges(IDbContextTransaction transaction = null)
{
var ret = base.SaveChanges();
transaction?.Commit();
@ -262,7 +262,7 @@ namespace osu.Game.Database
throw new MigrationFailedException(e);
}
}
catch (MigrationFailedException e)
catch (MigrationFailedException)
{
throw;
}