Skip to content

Commit 158e01b

Browse files
committed
Fixed gitignore to not exclude build folder
1 parent 0c1fac6 commit 158e01b

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
[Rr]eleases/
1818
x64/
1919
x86/
20-
build/
2120
bld/
2221
[Bb]in/
2322
[Oo]bj/

Build/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.msi
2+
*.dll

Build/Build.proj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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>

0 commit comments

Comments
 (0)