18 lines
482 B
XML
18 lines
482 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
<LangVersion>9</LangVersion>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
|
||
|
<!-- To generate the .runtimeconfig.json file-->
|
||
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\GodotSharp\GodotSharp.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|