16 lines
625 B
XML
16 lines
625 B
XML
<Project Sdk="Godot.NET.Sdk/4.4.1">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
<RootNamespace>VideoOrchestra</RootNamespace>
|
|
<AssemblyName>VideoOrchestra</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'ExportDebug' ">
|
|
<DefineConstants>$(DefineConstants);GODOT_REAL_T_IS_DOUBLE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'ExportRelease' ">
|
|
<DefineConstants>$(DefineConstants);GODOT_REAL_T_IS_DOUBLE</DefineConstants>
|
|
</PropertyGroup>
|
|
</Project> |