How to remove Typescript support from Visual Studio project?

后端 未结 4 1802
隐瞒了意图╮
隐瞒了意图╮ 2021-02-18 12:50

Adding TypeScript support in latest version of VS is easy - just add a TypeScript file and VS will automatically will reconfigure the project.

However when all TS files

4条回答
  •  轮回少年
    2021-02-18 13:40

    Another approach is to use TypeScriptCompileBlocked tag under PropertyGroup tag of csproject file.

    Yes in order to edit the csproj you need to open it in notepad or any other editor. This property is not editable through visual studio.

    
        True
    
    

    This wont require you to remove any other typescript tag.

提交回复
热议问题