Skip to content

Commit fb779a5

Browse files
committed
Core - Move DevTools Client from CefSharp.dll to CefSharp.Core.dll
- Moves the Dependency of System.Text.Json from CefSharp.dll BrowserSubProcess as a result no longer has a reference where wasn't required for it's operation. Resolves #4428 #4427
1 parent 75fd3ac commit fb779a5

28 files changed

+75
-13
lines changed

CefSharp.Core/CefSharp.Core.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<Compile Remove="RequestContext.netcore.cs" />
4242
<Compile Remove="UrlRequest.netcore.cs" />
4343
<Compile Remove="WindowInfo.netcore.cs" />
44+
<Compile Remove="DevTools\DevToolsClient.Generated.netcore.cs" />
4445
</ItemGroup>
4546
<ItemGroup>
4647
<Compile Remove="bin.netcore\**" />

CefSharp.Core/CefSharp.Core.netcore.csproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,20 @@
4444
<Compile Remove="RequestContext.cs" />
4545
<Compile Remove="UrlRequest.cs" />
4646
<Compile Remove="WindowInfo.cs" />
47+
<Compile Remove="DevTools\DevToolsClient.Generated.cs" />
4748
<!-- Don't include items from the "bin" and "obj" folders used by the .NET Framework projects. -->
4849
<None Remove="bin/**/*.*" />
4950
<None Remove="obj/**/*.*" />
5051
<Compile Remove="obj/**/*.*" />
5152
</ItemGroup>
5253

5354
<ItemGroup>
54-
<PackageReference Include="Microsoft.Net.Compilers" Version="3.8.0">
55-
<PrivateAssets>all</PrivateAssets>
56-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
57-
</PackageReference>
55+
<PackageReference Include="Microsoft.Net.Compilers" Version="3.8.0">
56+
<PrivateAssets>all</PrivateAssets>
57+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
58+
</PackageReference>
59+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
60+
<PackageReference Include="System.Text.Json" Version="5.0.0" />
5861
</ItemGroup>
5962

6063
<ItemGroup>
@@ -66,9 +69,5 @@
6669
</ProjectReference>
6770
</ItemGroup>
6871

69-
<ItemGroup>
70-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
71-
</ItemGroup>
72-
7372
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
7473
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)