Skip to content

Commit a35d957

Browse files
committed
Merge branch 'release-1.5'
2 parents 73e0139 + 6f354fa commit a35d957

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

Build/Build.proj

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
<Project DefaultTargets="GenerateMsi" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<Import Project="$(MSBuildExtensionsPath)\BtsMsiTask\BtsMsiTask.targets" />
3+
<Import Project="$(MSBuildExtensionsPath)\ExtensionPack\4.0\MSBuild.ExtensionPack.tasks"/>
34
<PropertyGroup>
45
<DestinationPath>.</DestinationPath>
56
<ApplicationName>BizTalkComponents.PipelineComponents.CopyContextProperty</ApplicationName>
67
</PropertyGroup>
78
<ItemGroup>
89
<Resource Include="..\Src\CopyContextProperty\bin\Debug\BizTalkComponents.PipelineComponents.CopyContextProperty.dll" />
910
</ItemGroup>
10-
11-
<Target Name="GenerateMsi">
11+
<Target Name="GetVersion">
12+
<MSBuild.ExtensionPack.Framework.Assembly TaskAction="GetInfo" NetAssembly="..\Src\CopyContextProperty\bin\Debug\BizTalkComponents.PipelineComponents.CopyContextProperty.dll">
13+
<Output TaskParameter="OutputItems" ItemName="Info"/>
14+
</MSBuild.ExtensionPack.Framework.Assembly>
15+
</Target>
16+
17+
<Target Name="GenerateMsi" DependsOnTargets="GetVersion">
1218
<MsiTask
13-
FileName="$(FileName)"
19+
FileName="BizTalkComponents.PipelineComponents.CopyContextProperty_%(Info.AssemblyInformationalVersion).msi"
1420
DestinationPath="$(DestinationPath)"
1521
ApplicationName="$(ApplicationName)"
22+
SourceLocation="C:\%(Info.AssemblyInformationalVersion)"
1623
Resources="@(Resource)" />
1724
</Target>
1825
</Project>

Src/CopyContextProperty/BizTalkComponents.PipelineComponents.CopyContextProperty.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>BizTalkComponents.PipelineComponents.CopyContextProperty</id>
5-
<version>1.0.0.2</version>
5+
<version>$version$</version>
66
<authors>Robin Hultman</authors>
77
<requireLicenseAcceptance>false</requireLicenseAcceptance>
88
<projectUrl>https://github.com/BizTalkComponents/CopyContextProperty</projectUrl>

Src/CopyContextProperty/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
3636
[assembly: AssemblyFileVersion("1.0.0.0")]
37+
[assembly: AssemblyInformationalVersion("1.5.0.0")]

0 commit comments

Comments
 (0)