Can you create a SSRS NuGet report package?

Is there a way to create a NuGet package of SSRS reports and data sources? I have the following specification, but get a message:

It is not possible to create a package that has no dependencies and contents.

<?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>

Our ultimate goal is to use the VSTS Build event to use Octopus Deploy to distribute reports to our dev server.

+4
source share

Source: https://habr.com/ru/post/1650218/


All Articles