你能创建一个SSRS报告的NuGet包吗?

时间:2016-08-04 19:09:19

标签: nuget nuget-package nuget-spec

有没有办法创建SSRS报告和数据源的NuGet包?我有以下规范,但得到消息:

  

无法创建没有依赖关系或内容的包。

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
    <metadata>
        <id>Edi.ReportDeployment</id>
        <title>Report Package</title>
        <version>0.1.0000001</version>
        <authors>Clark Associates</authors>
        <requireLicenseAcceptance>false</requireLicenseAcceptance>
        <description>Holds SSRS reports to be deployed for EDI.</description>
    </metadata>
    <files>
        <file src="../../Clark.EDI.Reports/*.rdl" target="Reports" />
        <file src="../Clark.EDI.Reports/*.rds" target="Data Sources" />
    </files>
</package>

我们的最终目标是让VSTS Build活动使用Octopus Deploy将报告推送到我们的开发服务器。

0 个答案:

没有答案