File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1717[Rr ]eleases /
1818x64 /
1919x86 /
20- build /
2120bld /
2221[Bb ]in /
2322[Oo ]bj /
Original file line number Diff line number Diff line change 1+ * .msi
2+ * .dll
Original file line number Diff line number Diff line change 1+ <Project DefaultTargets =" GenerateMsi" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
2+ <Import Project =" $(MSBuildExtensionsPath)\BtsMsiTask\BtsMsiTask.targets" />
3+ <Import Project =" $(MSBuildExtensionsPath)\ExtensionPack\4.0\MSBuild.ExtensionPack.tasks" />
4+
5+ <PropertyGroup >
6+ <DestinationPath >.</DestinationPath >
7+ <ApplicationName >BizTalkComponents.PipelineComponents.EncryptMessage</ApplicationName >
8+ </PropertyGroup >
9+ <ItemGroup >
10+ <Resource Include =" ..\Src\EncryptMessage\bin\Debug\BizTalkComponents.PipelineComponents.EncryptMessage.dll" />
11+ </ItemGroup >
12+
13+ <Target Name =" GetVersion" >
14+ <MSBuild .ExtensionPack.Framework.Assembly TaskAction =" GetInfo" NetAssembly =" ..\Src\EncryptMessage\bin\Debug\BizTalkComponents.PipelineComponents.EncryptMessage.dll" >
15+ <Output TaskParameter =" OutputItems" ItemName =" Info" />
16+ </MSBuild .ExtensionPack.Framework.Assembly>
17+ </Target >
18+
19+ <Target Name =" GenerateMsi" DependsOnTargets =" GetVersion" >
20+ <MsiTask
21+ FileName=" BizTalkComponents.PipelineComponents.EncryptMessage%(Info.AssemblyInformationalVersion).msi"
22+ DestinationPath=" $(DestinationPath)"
23+ ApplicationName=" $(ApplicationName)"
24+ SourceLocation =" C:\%(Info.AssemblyInformationalVersion)"
25+ Resources=" @(Resource)" />
26+ </Target >
27+ </Project >
You can’t perform that action at this time.
0 commit comments