Skip to content

Commit 9cc0f41

Browse files
committed
Initial working end-to-end
1 parent e9df308 commit 9cc0f41

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

eng/Version.Details.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
<Uri>https://github.com/dotnet/runtime</Uri>
299299
<Sha>9f0826200b6b97b9ae1a0d184c938dc70bf55ea2</Sha>
300300
</Dependency>
301-
<Dependency Name="Microsoft.NETCore.BrowserDebugHost.Transport" Version="5.0.0-rc.1.20414.5">
301+
<Dependency Name="Microsoft.NETCore.BrowserDebugHost.Transport" Version="6.0.0-dev">
302302
<Uri>https://github.com/dotnet/runtime</Uri>
303303
<Sha>6cc7cffaff2e0413ee84d9a7736f9ae1aa9a3f12</Sha>
304304
</Dependency>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<MicrosoftNETCoreAppInternalPackageVersion>5.0.0-rc.1.20411.5</MicrosoftNETCoreAppInternalPackageVersion>
6969
<MicrosoftNETCoreAppRefPackageVersion>5.0.0-rc.1.20411.5</MicrosoftNETCoreAppRefPackageVersion>
7070
<MicrosoftNETCoreAppRuntimewinx64PackageVersion>5.0.0-rc.1.20411.5</MicrosoftNETCoreAppRuntimewinx64PackageVersion>
71-
<MicrosoftNETCoreBrowserDebugHostTransportPackageVersion>5.0.0-rc.1.20414.5</MicrosoftNETCoreBrowserDebugHostTransportPackageVersion>
71+
<MicrosoftNETCoreBrowserDebugHostTransportPackageVersion>6.0.0-dev</MicrosoftNETCoreBrowserDebugHostTransportPackageVersion>
7272
<MicrosoftWin32RegistryPackageVersion>5.0.0-rc.1.20411.5</MicrosoftWin32RegistryPackageVersion>
7373
<MicrosoftWin32SystemEventsPackageVersion>5.0.0-rc.1.20411.5</MicrosoftWin32SystemEventsPackageVersion>
7474
<MicrosoftExtensionsCachingAbstractionsPackageVersion>5.0.0-rc.1.20411.5</MicrosoftExtensionsCachingAbstractionsPackageVersion>

src/Components/WebAssembly/Server/src/DebugProxyLauncher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private static async Task<string> LaunchAndGetUrl(IServiceProvider serviceProvid
4848
var processStartInfo = new ProcessStartInfo
4949
{
5050
FileName = muxerPath,
51-
Arguments = $"exec \"{executablePath}\"",
51+
Arguments = $"exec \"{executablePath}\" --owner-pid {ownerPid}",
5252
UseShellExecute = false,
5353
RedirectStandardOutput = true,
5454
};

src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212

1313
<ItemGroup>
1414
<Reference Include="Microsoft.AspNetCore.StaticFiles" />
15-
<Reference Include="Microsoft.NETCore.BrowserDebugHost.Transport" GeneratePathProperty="true"/>
16-
<!-- Dependencies needed by DebugProxy. -->
17-
<Reference Include= "Newtonsoft.Json" />
15+
<Reference Include="Microsoft.NETCore.BrowserDebugHost.Transport" GeneratePathProperty="true" />
1816
</ItemGroup>
1917

2018
<ItemGroup>
@@ -32,12 +30,7 @@
3230
<Target Name="IncludeDebugProxyBinariesAsContent" BeforeTargets="AssignTargetPaths">
3331
<ItemGroup>
3432
<DebugProxyBinaries Include="$(PkgMicrosoft_NETCore_BrowserDebugHost_Transport)\tools\$(DefaultNetCoreTargetFramework)\**" />
35-
<Content
36-
Include="@(DebugProxyBinaries)"
37-
Pack="true"
38-
PackagePath="tools\BlazorDebugProxy\%(RecursiveDir)%(FileName)%(Extension)"
39-
Link="BlazorDebugProxy\%(RecursiveDir)%(FileName)%(Extension)"
40-
CopyToOutputDirectory="PreserveNewest" />
33+
<Content Include="@(DebugProxyBinaries)" Pack="true" PackagePath="tools\BlazorDebugProxy\%(RecursiveDir)%(FileName)%(Extension)" Link="BlazorDebugProxy\%(RecursiveDir)%(FileName)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
4134
</ItemGroup>
4235
</Target>
4336

0 commit comments

Comments
 (0)