Skip to content

Commit a25cdbe

Browse files
authored
(GH-141) Only deliver required assemblies (#143)
1 parent 7e29767 commit a25cdbe

File tree

2 files changed

+28
-27
lines changed

2 files changed

+28
-27
lines changed

src/Cake.Tfs/3rdPartyLicense.txt

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -28,32 +28,6 @@ SOFTWARE.
2828

2929
---
3030

31-
JSON.NET
32-
33-
The MIT License (MIT)
34-
35-
Copyright (c) 2007 James Newton-King
36-
37-
Permission is hereby granted, free of charge, to any person obtaining a copy
38-
of this software and associated documentation files (the "Software"), to deal
39-
in the Software without restriction, including without limitation the rights
40-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
41-
copies of the Software, and to permit persons to whom the Software is
42-
furnished to do so, subject to the following conditions:
43-
44-
The above copyright notice and this permission notice shall be included in all
45-
copies or substantial portions of the Software.
46-
47-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
50-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
51-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53-
SOFTWARE.
54-
55-
---
56-
5731
.NET Core Libraries (CoreFX)
5832

5933
The MIT License (MIT)

src/Cake.Tfs/Cake.Tfs.csproj

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,34 @@
5252

5353
<Target Name="PackBuildOutputs" DependsOnTargets="SatelliteDllsProjectOutputGroup;DebugSymbolsProjectOutputGroup">
5454
<ItemGroup>
55-
<TfmSpecificPackageFile Include="$(OutputPath)\**\*" Exclude="$(OutputPath)\**\*.xml;$(OutputPath)\**\*.pdb;$(OutputPath)\**\Cake.Core.dll">
55+
<TfmSpecificPackageFile Include="$(OutputPath)\**\3rdPartyLicense.txt">
56+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
57+
</TfmSpecificPackageFile>
58+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Cake.Tfs.*">
59+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
60+
</TfmSpecificPackageFile>
61+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Microsoft.TeamFoundation.Common.dll">
62+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
63+
</TfmSpecificPackageFile>
64+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Microsoft.TeamFoundation.Core.WebApi.dll">
65+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
66+
</TfmSpecificPackageFile>
67+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Microsoft.TeamFoundation.SourceControl.WebApi.dll">
68+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
69+
</TfmSpecificPackageFile>
70+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Microsoft.VisualStudio.Services.Client.Interactive.dll">
71+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
72+
</TfmSpecificPackageFile>
73+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Microsoft.VisualStudio.Services.Common.dll">
74+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
75+
</TfmSpecificPackageFile>
76+
<TfmSpecificPackageFile Include="$(OutputPath)\**\Microsoft.VisualStudio.Services.WebApi.dll">
77+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
78+
</TfmSpecificPackageFile>
79+
<TfmSpecificPackageFile Include="$(OutputPath)\**\System.Net.Http.Formatting.dll">
80+
<PackagePath>lib\$(TargetFramework)\</PackagePath>
81+
</TfmSpecificPackageFile>
82+
<TfmSpecificPackageFile Include="$(OutputPath)\**\TfsUrlParser.dll">
5683
<PackagePath>lib\$(TargetFramework)\</PackagePath>
5784
</TfmSpecificPackageFile>
5885
</ItemGroup>

0 commit comments

Comments
 (0)