parent
2c982d3dc3
commit
c975e0e886
@ -0,0 +1,7 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*.{cs,vb}]
|
||||
dotnet_diagnostic.CA1050.severity = none
|
@ -1,2 +1,8 @@
|
||||
# Godot 4+ specific ignores
|
||||
.godot/
|
||||
|
||||
# IDE
|
||||
.vscode
|
||||
|
||||
# Temporary assets
|
||||
Assets
|
||||
|
@ -1,6 +1,9 @@
|
||||
<Project Sdk="Godot.NET.Sdk/4.0.0-beta.8">
|
||||
<Project Sdk="Godot.NET.Sdk/4.0.0-rc.2">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -0,0 +1,2 @@
|
||||
global using System;
|
||||
global using Godot;
|
Loading…
Reference in new issue