Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.43 KB

File metadata and controls

53 lines (38 loc) · 1.43 KB
layout title subtitle use-site-title
page
BI Developer Extensions
The ultimate toolkit for Microsoft BI Developers
true

A Visual Studio extension that enhances development functionality in Business Intelligence Development Studio (BIDS) and SQL Server Data Tools (SSDT).

This project was previously called BIDS Helper (see Project History)

Installation

Starting with Visual Studio 2015, {{site.title}} is installed from the Visual Studio Marketplace.

For install instructions with earlier versions of Visual Studio, see the downloads page.

Documentation

All of the features in {{site.title}} are documented under the Features menu.

{% assign sorted_features = site.features | sort: 'title' %}

{% for comp in site.data.components %}

{{comp.title}} Features

{% for feature in sorted_features %}{% if feature.component contains comp.name or feature.category contains comp.name %} - {{ feature.title }}{% endif %} {% endfor %} {% endfor %}

News

{% assign recent = site.posts | where: "index", "false" %}

    {% for ann in recent limit: 3 %}
    <li>
      <a href="{{ ann.url }}">
        {{ ann.date | date_to_string }} - {{ ann.title }}
      </a>
    </li>
    

    {% endfor %}