Skip to content

Commit 6b217de

Browse files
committed
update SendToHelix + Infrastructure.Common
1 parent 106cc17 commit 6b217de

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

System.ServiceModel.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Binding.UDS.IntegrationTest
8989
EndProject
9090
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.ServiceModel.NetNamedPipe.Tests", "src\System.ServiceModel.NetNamedPipe\tests\System.ServiceModel.NetNamedPipe.Tests.csproj", "{FD188537-21AF-48C5-84FF-F8758F4C42A8}"
9191
EndProject
92+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SelfHostedCoreWCFService", "src\System.Private.ServiceModel\tools\SelfHostedCoreWcfService\SelfHostedCoreWCFService.csproj", "{D89D949F-254B-4A29-AE78-DEB081ACA601}"
93+
EndProject
9294
Global
9395
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9496
Debug|Any CPU = Debug|Any CPU
@@ -259,6 +261,10 @@ Global
259261
{FD188537-21AF-48C5-84FF-F8758F4C42A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
260262
{FD188537-21AF-48C5-84FF-F8758F4C42A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
261263
{FD188537-21AF-48C5-84FF-F8758F4C42A8}.Release|Any CPU.Build.0 = Release|Any CPU
264+
{D89D949F-254B-4A29-AE78-DEB081ACA601}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
265+
{D89D949F-254B-4A29-AE78-DEB081ACA601}.Debug|Any CPU.Build.0 = Debug|Any CPU
266+
{D89D949F-254B-4A29-AE78-DEB081ACA601}.Release|Any CPU.ActiveCfg = Release|Any CPU
267+
{D89D949F-254B-4A29-AE78-DEB081ACA601}.Release|Any CPU.Build.0 = Release|Any CPU
262268
EndGlobalSection
263269
GlobalSection(SolutionProperties) = preSolution
264270
HideSolutionNode = FALSE

eng/SendToHelix.proj

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
<EnableXUnitReporter>true</EnableXUnitReporter>
1616
</PropertyGroup>
1717

18-
<ItemGroup Condition=" '$(RunWithCoreWcfService)' == 'true' " >
19-
<ProjectReference Include="..\src\System.Private.ServiceModel\tools\SelfHostedCoreWcfService\SelfHostedCoreWCFService.csproj" />
20-
</ItemGroup>
21-
2218
<ItemGroup>
2319
<XUnitProject Include="..\src\System.Private.ServiceModel\tests\Scenarios\**\*.IntegrationTests.csproj">
2420
<TargetFramework>$(XUnitPublishTargetFramework)</TargetFramework>
@@ -59,12 +55,14 @@
5955
<Creator Condition=" '$(Creator)' == ''">anon</Creator>
6056
</PropertyGroup>
6157

62-
<PropertyGroup Condition=" '$(RunWithCoreWcfService)' == 'true' AND !$(HelixTargetQueue.StartsWith('Windows'))" >
63-
<HelixPreCommands>$(HelixPreCommands);sh $(MSBuildThisFileDirectory)/../artifacts/bin/SelfHostedCoreWCFService/SelfHostedCoreWCFService bootstrap:true</HelixPreCommands>
58+
<PropertyGroup Condition=" '$(RunWithCoreWcfService)' == 'true' AND $(HelixTargetQueue.StartsWith('Linux'))" >
59+
<HelixPreCommands>$(HelixPreCommands);sh $(MSBuildThisFileDirectory)../artifacts/bin/SelfHostedCoreWCFService/SelfHostedCoreWCFService bootstrap:true</HelixPreCommands>
6460
</PropertyGroup>
6561

66-
<PropertyGroup Condition=" '$(RunWithCoreWcfService)' == 'true' AND $(HelixTargetQueue.StartsWith('Windows'))" >
67-
<HelixPreCommands>$(HelixPreCommands);$(MSBuildThisFileDirectory)/../artifacts/bin/SelfHostedCoreWCFService/SelfHostedCoreWCFService.exe bootstrap:true</HelixPreCommands>
62+
<PropertyGroup>
63+
<HelixPreCommands>$(HelixPreCommands);ls;</HelixPreCommands>
64+
<HelixPreCommands>$(HelixPreCommands);dir /s /b /o:gn ;</HelixPreCommands>
65+
<HelixPreCommands>$(HelixPreCommands);$(MSBuildThisFileDirectory)\..\artifacts\bin\SelfHostedCoreWCFService\SelfHostedCoreWCFService bootstrap:true</HelixPreCommands>
6866
</PropertyGroup>
6967

7068
<PropertyGroup Condition="!$(HelixTargetQueue.StartsWith('Windows'))">

src/System.Private.ServiceModel/tests/Common/Infrastructure/Infrastructure.Common.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<ItemGroup>
1010
<ProjectReference Include="..\..\..\..\System.ServiceModel.Primitives\src\System.ServiceModel.Primitives.csproj" />
11+
<ProjectReference Include="..\..\..\tools\SelfHostedCoreWcfService\SelfHostedCoreWCFService.csproj" />
1112
<PackageReference Include="xunit.stafact" Version="$(XUnitStaFactPackageVersion)" />
1213
<PackageReference Include="Microsoft.DotNet.XUnitExtensions" Version="$(MicrosoftDotNetXUnitExtensionsPackageVersion)" />
1314
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="$(MicrosoftDotNetPlatformAbstractionsVersion)" />

0 commit comments

Comments
 (0)