Skip to content

Commit 9d63773

Browse files
committed
Merge branch 'rohu/addmetadata' into release-1.5.0.0
2 parents 8023627 + cb6ac31 commit 9d63773

File tree

4 files changed

+40
-9
lines changed

4 files changed

+40
-9
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"/>
34
<PropertyGroup>
45
<DestinationPath>.</DestinationPath>
56
<ApplicationName>BizTalkComponents.PipelineComponents.ManageMessageNamespace</ApplicationName>
67
</PropertyGroup>
78
<ItemGroup>
89
<Resource Include="..\Src\ManageMessageNamespace\bin\Debug\BizTalkComponents.PipelineComponents.ManageMessageNamespace.dll" />
910
</ItemGroup>
10-
11-
<Target Name="GenerateMsi">
12-
<MsiTask
13-
FileName="$(FileName)"
11+
12+
<Target Name="GetVersion">
13+
<MSBuild.ExtensionPack.Framework.Assembly TaskAction="GetInfo" NetAssembly="..\Src\ManageMessageNamespace\bin\Debug\BizTalkComponents.PipelineComponents.ManageMessageNamespace.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.ManageMessageNamespace%(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.

Src/ManageMessageNamespace/BizTalkComponents.ManageMessageNamespace.nuspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
<package>
33
<metadata>
44
<id>BizTalkComponents.PipelineComponents.ManageMessageNamespace</id>
5-
<version>1.0.0.0</version>
6-
<authors>riha</authors>
7-
<owners>ibizsolutions</owners>
8-
<description>Shared.PipelineComponents.ManageMessageNamespace</description>
5+
<version>$version$</version>
6+
<authors>Richard Hallgren</authors>
7+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
8+
<projectUrl>https://github.com/BizTalkComponents/ManageMessageNamespace</projectUrl>
9+
<description>BizTalkComponents.PipelineComponents.ManageMessageNamespace</description>
910
</metadata>
1011
</package>

Src/ManageMessageNamespace/BizTalkComponents.PipelineComponents.ManageMessageNamespace.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
<Compile Include="Streams\XmlNamespaceRemover.cs" />
9898
</ItemGroup>
9999
<ItemGroup>
100+
<None Include="BizTalkComponents.ManageMessageNamespace.nuspec" />
100101
<None Include="BizTalkComponents.PipelineComponents.ManageMessageNamespace.snk" />
101102
<None Include="packages.config" />
102103
</ItemGroup>

0 commit comments

Comments
 (0)