BabylonJS / Exporters

Exporters for Babylon.js and gltf file formats
Other
606 stars 313 forks source link

MAX2023 exporter release build configuration tag error #1046

Closed rgemelli closed 2 years ago

rgemelli commented 2 years ago

Hi, I've found that the configuration for Release|AnyCPU, Debug|x64, Release|x64 define a wrong constant (MAX2022) instead of MAX2023, Debug|AnyCPU works fine.

@pandaGaume

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE;MAX2022</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
rgemelli commented 2 years ago

Many thanks!