midas+son의 크리에이티브(creative) 이야기

Error CS0619

'UnrealBuildTool.RulesCompiler.GetModuleFilename(string)'은(는) 사용되지 않습니다. 

'GetModuleFilename is deprecated, use the ModuleDirectory property on any ModuleRules instead to get a path to your module.'


프로젝트.Build.cs 에서 모듈경로 추가하기 위해 사용했던 부분이 

버전 업되면서 바뀌었다.(지금은 4.15.1 사용 중)


    private string ModulePath

    {

        //get { return Path.GetDirectoryName(RulesCompiler.GetModuleFilename(this.GetType().Name)); }    //NO

        get { return ModuleDirectory; }    //YES

    }