File tree Expand file tree Collapse file tree 3 files changed +7
-18
lines changed Expand file tree Collapse file tree 3 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,12 @@ Task("Pack")
9191 . IsDependentOn ( "Test" )
9292 . Does ( ( ) =>
9393{
94- GitLink3 ( "./source/Halibut/bin/Release/net45/Halibut.pdb" ) ;
95- GitLink3 ( "./source/Halibut/bin/Release/netstandard1.5/Halibut.pdb" ) ;
94+ var pdbs = GetFiles ( $ "./source/Halibut/bin/{ configuration } /**/Halibut.pdb") ;
95+ foreach ( var pdb in pdbs )
96+ {
97+ GitLink3 ( pdb ) ;
98+ }
99+
96100 DotNetCorePack ( "./source/Halibut" , new DotNetCorePackSettings
97101 {
98102 Configuration = configuration ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1212 <PackageProjectUrl >https://github.com/OctopusDeploy/Halibut/</PackageProjectUrl >
1313 <PackageLicenseUrl >https://github.com/OctopusDeploy/Halibut/blob/master/LICENSE</PackageLicenseUrl >
1414 <GenerateAssemblyTitleAttribute >false</GenerateAssemblyTitleAttribute >
15+ <AllowedOutputExtensionsInPackageBuildOutputFolder >$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder >
1516 </PropertyGroup >
1617 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
1718 <Optimize >True</Optimize >
4142 <DefineConstants >$(DefineConstants);NET40;HAS_REAL_PROXY;SUPPORTS_WEB_SOCKET_CLIENT</DefineConstants >
4243 </PropertyGroup >
4344
44- <ItemGroup >
45- <Content Include =" $(OutputPath)\net45\Halibut.pdb" >
46- <Pack >true</Pack >
47- <PackagePath >lib\net45\</PackagePath >
48- </Content >
49- <Content Include =" $(OutputPath)\netstandard1.5\Halibut.pdb" >
50- <Pack >true</Pack >
51- <PackagePath >lib\netstandard1.5\</PackagePath >
52- </Content >
53- </ItemGroup >
54-
5545</Project >
You can’t perform that action at this time.
0 commit comments