File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ private static async Task GenerateEntities(string token, string path)
51
51
foreach ( var file in CodeGenerator . Generate ( schema , "Octokit.GraphQL" , "Octokit.GraphQL.Model" ) )
52
52
{
53
53
// fix for int32 overflow, see https://github.com/octokit/octokit.graphql.net/issues/311
54
- if ( file . Content . Contains ( "public int? DatabaseId { get; }" ) )
54
+ if ( file . Content . Contains ( "int? DatabaseId { get; }" ) )
55
55
{
56
- file . Content = file . Content . Replace ( "public int? DatabaseId { get; }" , "public long? DatabaseId { get; }" ) ;
56
+ file . Content = file . Content . Replace ( "int? DatabaseId { get; }" , "long? DatabaseId { get; }" ) ;
57
57
}
58
58
Console . WriteLine ( "Writing " + file . Path ) ;
59
59
File . WriteAllText ( Path . Combine ( path , file . Path ) , file . Content ) ;
You can’t perform that action at this time.
0 commit comments