forked from rtumaykin/ssis-build
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSsisBuild.nuspec
26 lines (26 loc) · 1.4 KB
/
SsisBuild.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<package>
<metadata>
<id>SSISBuild</id>
<version>2.1.2</version>
<title>SSIS Build</title>
<authors>Roman Tumaykin</authors>
<owners>Roman Tumaykin</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/rtumaykin/ssis-build/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A set of utilities that allow to autonomously build a Visual Studio SSIS project (dtproj) into a deployment package (ispac), and deploy the package to an SSIS catalog.</description>
<releaseNotes>Added powershell parameters documentation
Made Catalog and ProjectName parameters Optional in deployer</releaseNotes>
<copyright>Copyright © 2017 Roman Tumaykin</copyright>
<tags>SSIS build tools</tags>
</metadata>
<files>
<file src="src\SsisBuild\bin\$configuration$\*.dll" target="tools" />
<file src="src\SsisBuild\bin\$configuration$\ssisbuild.exe" target="tools" />
<file src="src\SsisBuild\bin\$configuration$\ssisbuild.exe.config" target="tools" />
<file src="src\SsisDeploy\bin\$configuration$\*.dll" target="tools" exclude="**\SsisBuild.Core.dll;**\SsisBuild.Logger.dll" />
<file src="src\SsisDeploy\bin\$configuration$\ssisdeploy.exe" target="tools" />
<file src="src\SsisDeploy\bin\$configuration$\ssisdeploy.exe.config" target="tools" />
</files>
</package>