Visual Studio 2013 SQL 服务器数据库项目构建失败

Visual Studio 2013 SQL Server database project build failure

我正在 Windows 2012 R2 上使用 Visual Studio 2013 玩 SQL 服务器数据库项目。下面是我的代码,您可以从我的共享保管箱 link https://www.dropbox.com/s/aalnlwvxutr4g0f/UDF.zip?dl=1

下载整个项目源代码
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;

public partial class UserDefinedFunctions
{
    [Microsoft.SqlServer.Server.SqlFunction]
    public static SqlString Greetings(SqlString name)
    {
        // Put your code here
        return new SqlString("Hello " + (string)name);
    }
}

当我尝试构建解决方案时,收到以下消息。

------ Build started: Project: UDF, Configuration: Debug Any CPU ------ Creating a model to represent the project... Done building project "UDF.sqlproj" -- FAILED.

Build FAILED. ========== Build: 0 succeeded or up-to-date, 1 failed, 0 skipped ==========

基本上它告诉我构建失败但我找不到任何具体错误。错误列表窗格下也没有列出任何内容。请指出正确的方向?

您需要安装最新版本的SQL Server Data Tools 这是 link

http://msdn.microsoft.com/en-US/data/hh297027

http://go.microsoft.com/fwlink/?linkid=393521&clcid=0x409

安装后重新启动计算机并尝试重新构建。