3

在 Visual Studio 中,我们可以在许多地方使用预定义的占位符,例如,如果我们正在创建构建后事件,一些占位符可用于获取项目信息。如果我们正在查看类模板,则有一些占位符来获取项目特定的东西

using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$
{
    class $safeitemrootname$
    {
    }
}

可能是这个占位符因地而异(构建后/预构建事件命令、类模板等。)

有没有可以找到所有可用占位符列表的来源?

4

0 回答 0