File tree 3 files changed +7
-18
lines changed
3 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,12 @@ Task("Pack")
91
91
. IsDependentOn ( "Test" )
92
92
. Does ( ( ) =>
93
93
{
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
+
96
100
DotNetCorePack ( "./source/Halibut" , new DotNetCorePackSettings
97
101
{
98
102
Configuration = configuration ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 12
12
<PackageProjectUrl >https://github.com/OctopusDeploy/Halibut/</PackageProjectUrl >
13
13
<PackageLicenseUrl >https://github.com/OctopusDeploy/Halibut/blob/master/LICENSE</PackageLicenseUrl >
14
14
<GenerateAssemblyTitleAttribute >false</GenerateAssemblyTitleAttribute >
15
+ <AllowedOutputExtensionsInPackageBuildOutputFolder >$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder >
15
16
</PropertyGroup >
16
17
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
17
18
<Optimize >True</Optimize >
41
42
<DefineConstants >$(DefineConstants);NET40;HAS_REAL_PROXY;SUPPORTS_WEB_SOCKET_CLIENT</DefineConstants >
42
43
</PropertyGroup >
43
44
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
-
55
45
</Project >
You can’t perform that action at this time.
0 commit comments