Cake.SSRS
1.1.0
dotnet add package Cake.SSRS --version 1.1.0
NuGet\Install-Package Cake.SSRS -Version 1.1.0
<PackageReference Include="Cake.SSRS" Version="1.1.0" />
paket add Cake.SSRS --version 1.1.0
#r "nuget: Cake.SSRS, 1.1.0"
#addin nuget:?package=Cake.SSRS&version=1.1.0
Cake.SSRS
Cake.SSRS is set of aliases for Cake that help simplify deploying objects to SQL Server Reporting Services. Release notes can be found here.
Information
Stable | Pre-release | |
---|---|---|
GitHub Release | - | |
NuGet |
Build Status
Develop | Master |
---|---|
Code Coverage
Discussion
If you have questions, search for an existing one, or create a new discussion on the Cake GitHub repository, using the Extension Q&A
category.
About
This Addin only contains the functionality needed to upload the most common object types to SSRS (Reports, DataSets, and DataSources). Pull requests are accepted if you need additional functionality. Don't forget to include the unit tests with it.
Usage
Creating a Folder
SsrsCreateFolder("AdventureWorks", "/", new SsrsConnectionSettings
{
ServiceEndpoint = "http://localhost/reportserver/ReportService2010.asmx",
UseDefaultCredentials = true,
ProxyCredentialType = ProxyCredentialType.Ntlm,
ImperonsationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation,
SecurityMode = SecurityMode.TransportCredentialOnly
});
Upload a Report
SsrsUploadReport("./path/to/report.rdl", "/AdventureWorks",
new Dictionary<string, string>
{
["Description"] = "Description for the Report"
},
new SsrsConnectionSettings
{
ServiceEndpoint = "http://localhost/reportserver/ReportService2010.asmx",
UseDefaultCredentials = true,
ProxyCredentialType = ProxyCredentialType.Ntlm,
ImperonsationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation,
SecurityMode = SecurityMode.TransportCredentialOnly
});
Upload a Shared DataSet
SsrsUploadReport("./path/to/dataset.rsd", "/AdventureWorks",
new Dictionary<string, string>
{
["Description"] = "Description for the DataSet"
},
new SsrsConnectionSettings
{
ServiceEndpoint = "http://localhost/reportserver/ReportService2010.asmx",
UseDefaultCredentials = true,
ProxyCredentialType = ProxyCredentialType.Ntlm,
ImperonsationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation,
SecurityMode = SecurityMode.TransportCredentialOnly
});
Upload a DataSource
SsrsUploadDataSource("./path/to/datasource.rds", "/AdventureWorks",
new Dictionary<string, string>
{
["Description"] = "Description for the DataSource"
},
new SsrsConnectionSettings
{
ServiceEndpoint = "http://localhost/reportserver/ReportService2010.asmx",
UseDefaultCredentials = true,
ProxyCredentialType = ProxyCredentialType.Ntlm,
ImperonsationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation,
SecurityMode = SecurityMode.TransportCredentialOnly
});
Search for an Item
var catalogItem = SsrsFindItem (
new FindItemRequest
{
Folder = "/AdventureWorks",
ItemName = "My_Report_Name",
Recursive = false
},
new SsrsConnectionSettings
{
ServiceEndpoint = "http://localhost/reportserver/ReportService2010.asmx",
UseDefaultCredentials = true,
ProxyCredentialType = ProxyCredentialType.Ntlm,
ImperonsationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation,
SecurityMode = SecurityMode.TransportCredentialOnly
});
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.