![]() |
VOOZH | about |
dotnet add package Sonrai.ExtRS --version 2.0.2
NuGet\Install-Package Sonrai.ExtRS -Version 2.0.2
<PackageReference Include="Sonrai.ExtRS" Version="2.0.2" />
<PackageVersion Include="Sonrai.ExtRS" Version="2.0.2" />Directory.Packages.props
<PackageReference Include="Sonrai.ExtRS" />Project file
paket add Sonrai.ExtRS --version 2.0.2
#r "nuget: Sonrai.ExtRS, 2.0.2"
#:package Sonrai.ExtRS@2.0.2
#addin nuget:?package=Sonrai.ExtRS&version=2.0.2Install as a Cake Addin
#tool nuget:?package=Sonrai.ExtRS&version=2.0.2Install as a Cake Tool
ExtRS is a .NET class library for extending the capabilities of Reporting Services, among other things. With ExtRS, (pronounced "extras"), common public API endpoints and SDK clients are consolidated into a utility .dll containing features that can compliment your .NET development. ExtRS also contains a simplified interface to the SSRS v2 API for programmatically managing SSRS catalog item types (CatalogItem, Report, DataSource, DataSet, etc.).
SSRS ain't dead- it's just a niche tool that hasn't fully realized its potential- yet. 🤷♂️
This plug-in works as a drop-in Nuget package for .NET projects as well an SSRS Custom Assembly as described by Microsoft here: https://docs.microsoft.com/en-us/sql/reporting-services/custom-assemblies/using-custom-assemblies-with-reports?view=sql-server-ver15
This package includes the following components:
[TestInitialize]
public async Task InitializeTests()
{
_httpClient = new _httpClient();
SSRSConnection connection = new SSRSConnection(_configuration["ReportServerName"]!, "extRSAuth",
AuthenticationType.ExtRSAuth);
connection.SqlAuthCookie = await SSRSService.GetSqlAuthCookie(_httpClient,
connection.Administrator, "", connection.ServerName);
ssrs = new SSRSService(connection);
}
[TestMethod]
public async Task CreateGetDeleteReportSucceeds()
{
string content = ssrsReportItemJsonString; // ie: { "@odata.type": "#Model.Report", "id":...
var postResp = await ssrs.CallApi("POST", "Reports", "{" + content + "}");
Assert.IsTrue(postResp.IsSuccessStatusCode);
var getResponse = await ssrs.CallApi("GET", postResp.Headers.Location.Segments[4]);
Assert.IsTrue(getResponse.IsSuccessStatusCode);
var deleteResp = await ssrs.CallApi("DELETE", postResp.Headers.Location.Segments[4]);
Assert.IsTrue(deleteResp.IsSuccessStatusCode);
}
public SSRSService(SSRSConnection connection)
{
conn = connection;
client = new _httpClient();
cookieContainer.Add(new Cookie("sqlAuthCookie", conn.SqlAuthCookie, "/", "localhost"));
serverUrl = string.Format("https://{0}/reports/api/v2.0/", conn.ServerName);
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.