-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCefSharp.Avalonia.csproj
More file actions
30 lines (26 loc) · 1.18 KB
/
CefSharp.Avalonia.csproj
File metadata and controls
30 lines (26 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>CefSharp.Avalonia</RootNamespace>
<AssemblyName>CefSharp.Avalonia</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>CefSharp.Avalonia</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<LangVersion>Latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="AvaloniaRenderSurface.cs" />
<Compile Remove="CursorsProvider.cs" />
<Compile Remove="InputExtensions.cs" />
<Compile Remove="KeyInterop.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview5" />
<PackageReference Include="StreamJsonRpc" Version="2.16.36" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CefSharp.OutOfProcess.Core\CefSharp.OutOfProcess.Core.csproj" />
<ProjectReference Include="..\CefSharp.Dom\lib\PuppeteerSharp\CefSharp.Dom.OutOfProcess.csproj" />
</ItemGroup>
</Project>