Skip to content
This repository was archived by the owner on Jan 15, 2023. It is now read-only.

Commit 829bc03

Browse files
committed
Upgraded to version 5.1.
1 parent 8df1069 commit 829bc03

2 files changed

Lines changed: 14 additions & 12 deletions

File tree

src/Chromely.CefSharp/Chromely.CefSharp.csproj

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
55
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
66
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
77
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
8-
<ProductVersion>5.1.83.0-pre01</ProductVersion>
8+
<ProductVersion>5.1.83.0</ProductVersion>
99
<AssemblyVersion>5.1.83.0</AssemblyVersion>
1010
<FileVersion>5.1.83.0</FileVersion>
11-
<Version>5.1.83.0-pre01</Version>
11+
<Version>5.1.83.0</Version>
1212
<Authors>Chromely Projects</Authors>
1313
<Company>Chromely Projects</Company>
14-
<Description>Chromely CefSharp implementation. Chromely.CefSharp version naming is based Chromely and Chromium versions implemented- major.minor.chromuim version.patch e.g 1.0.71.0.</Description>
15-
<Copyright>Copyright © 2017-2019 Chromely Projects</Copyright>
14+
<Description>Chromely CefSharp implementation - this is in NetStandard as it can be used in both .NET Framework, .NET Core 3 and .NET 5 (Windows Only). Chromely.CefSharp version naming is based Chromely and Chromium versions implemented- major.minor.chromuim version.patch e.g 1.0.71.0.</Description>
15+
<Copyright>Copyright © 2017-2020 Chromely Projects</Copyright>
1616
<PackageLicenseUrl>https://github.com/chromelyapps/Chromely/blob/master/LICENSE.md</PackageLicenseUrl>
1717
<PackageProjectUrl>https://github.com/chromelyapps/Chromely</PackageProjectUrl>
1818
<PackageIconUrl>https://github.com/chromelyapps/Chromely/blob/master/nugets/chromely.ico?raw=true</PackageIconUrl>
19-
<PackageTags>Cef Chromium HTML5 Desktop Chromely CefSharp Ajax HTTP XHR JavaScript Binding (JSB)</PackageTags>
19+
<PackageTags>CEF Chromium HTML5 Desktop Chromely CefSharp NetStandard .NET Core 3 .NET 5</PackageTags>
2020
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2121
<PackageReleaseNotes>
22-
Upgrade to v5.1 - https://github.com/chromelyapps/Chromely/issues/225.
22+
- Upgrade to v5.1 - https://github.com/chromelyapps/Chromely/issues/225.
23+
- Fixes for Fullscreen/Kiosk modes - https://github.com/chromelyapps/CefSharp/commit/cf9eb16976f707981770aba0d60f0281e86a3247
24+
- Adding a configurable option - UseOnlyCefMessageLoop - https://github.com/chromelyapps/CefSharp/commit/29b26f293baea1430d4f2f1990a79d7416041a39
2325
</PackageReleaseNotes>
2426
<RepositoryType>Github Repository</RepositoryType>
2527
<RepositoryUrl>https://github.com/chromelyapps/Chromely</RepositoryUrl>
@@ -29,25 +31,25 @@
2931

3032
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
3133
<PlatformTarget>AnyCPU</PlatformTarget>
32-
<DocumentationFile>bin\Debug\netstandard2.1\Chromely.CefSharp.xml</DocumentationFile>
34+
<DocumentationFile>bin\Debug\$(TargetFramework)\Chromely.CefSharp.xml</DocumentationFile>
3335
<NoWarn>1701;1702; NU5125;7035</NoWarn>
3436
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3537
</PropertyGroup>
3638

3739
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
38-
<DocumentationFile>bin\Release\netstandard2.1\Chromely.CefSharp.xml</DocumentationFile>
40+
<DocumentationFile>bin\Release\$(TargetFramework)\Chromely.CefSharp.xml</DocumentationFile>
3941
<NoWarn>1701;1702; NU5125;7035</NoWarn>
4042
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4143
</PropertyGroup>
4244

4345
<ItemGroup>
4446
<PackageReference Include="CefSharp.Common" Version="83.4.20" />
45-
<PackageReference Include="Chromely.Core" Version="5.1.0-pre01" />
47+
<PackageReference Include="Chromely.Core" Version="5.1.0" />
4648
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.5" />
4749
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.5" />
4850
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
4951
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.5" />
50-
<PackageReference Include="System.Text.Json" Version="4.7.2" />
52+
<PackageReference Include="System.Text.Json" Version="4.7.2" />
5153
</ItemGroup>
5254

5355
<ItemGroup>

src/Chromely.CefSharp/WindowController.Services.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected virtual void RegisterDefaultSchemeHandlers()
4545
DomainName = item.Host,
4646
SchemeHandlerFactory = schemeHandler,
4747
IsCorsEnabled = true,
48-
IsSecure = true
48+
IsSecure = false
4949
});
5050
}
5151
}

0 commit comments

Comments
 (0)