Skip to content

Commit 16703ae

Browse files
committed
Merge branch 'release-1.5'
2 parents 499fc63 + 817c7c2 commit 16703ae

File tree

6 files changed

+44
-7
lines changed

6 files changed

+44
-7
lines changed

Build/Build.proj

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
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"/>
4+
35
<PropertyGroup>
46
<DestinationPath>.</DestinationPath>
57
<ApplicationName>BizTalkComponents.PipelineComponents.HttpDisassembler</ApplicationName>
68
</PropertyGroup>
79
<ItemGroup>
810
<Resource Include="..\Src\HttpDisassembler\bin\Debug\BizTalkComponents.PipelineComponents.HttpDisassembler.dll" />
911
</ItemGroup>
10-
11-
<Target Name="GenerateMsi">
12-
<MsiTask
13-
FileName="$(FileName)"
12+
<Target Name="GetVersion">
13+
<MSBuild.ExtensionPack.Framework.Assembly TaskAction="GetInfo" NetAssembly="..\Src\HttpDisassembler\bin\Debug\BizTalkComponents.PipelineComponents.HttpDisassembler.dll">
14+
<Output TaskParameter="OutputItems" ItemName="Info"/>
15+
</MSBuild.ExtensionPack.Framework.Assembly>
16+
</Target>
17+
18+
<Target Name="GenerateMsi" DependsOnTargets="GetVersion">
19+
<MsiTask
20+
FileName="BizTalkComponents.PipelineComponents.CopyContextProperty_%(Info.AssemblyInformationalVersion).msi"
1421
DestinationPath="$(DestinationPath)"
1522
ApplicationName="$(ApplicationName)"
23+
SourceLocation="C:\%(Info.AssemblyInformationalVersion)"
1624
Resources="@(Resource)" />
17-
</Target>
25+
</Target>
1826
</Project>

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 iBiz Solutions
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
The HttpDisassembler component is used to create a message body from the URL in a HTTP GET request. More info available at:
2+
http://blog.ibiz-solutions.se/integration/exposing-a-rest-get-endpoint-using-biztalk-server-2013/
3+
4+
More information available at:
5+
https://biztalkcomponents.github.io/ref/http-disassembler.html
6+
17
[![Build status](https://ci.appveyor.com/api/projects/status/github/BizTalkComponents/HttpDisassembler?branch=master)](https://ci.appveyor.com/api/projects/status/github/BizTalkComponents/HttpDisassembler/branch/master)

Src/HttpDisassembler/BizTalkComponents.PipelineComponents.HttpDisassembler.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>BizTalkComponents.PipelineComponents.HttpDisassembler</RootNamespace>
1111
<AssemblyName>BizTalkComponents.PipelineComponents.HttpDisassembler</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16+
<TargetFrameworkProfile />
1617
</PropertyGroup>
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>true</DebugSymbols>

Src/HttpDisassembler/BizTalkComponents.PipelineComponents.HttpDisassembler.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.HttpDisassembler</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/HttpDisassembler</projectUrl>

Src/HttpDisassembler/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)