disable warnings in generated code

This commit is contained in:
Matt Parker
2025-08-27 18:38:54 +10:00
parent b5cf5ddc91
commit bb03c57df8
3 changed files with 5 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ using Godot;
namespace GDExtensionBindgen;
#nullable disable
public class PTY
{
// Engine object used for calling engine methods

View File

@@ -5,6 +5,8 @@ using Godot;
namespace GDExtensionBindgen;
#nullable disable
public class Terminal
{
// Engine object used for calling engine methods

View File

@@ -3,6 +3,7 @@
<TargetFramework>net9.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SharpIDE.Application\SharpIDE.Application.csproj" />