|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.1</TargetFramework> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> |
5 | 5 | <CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport> |
6 | 6 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
7 | 7 | <ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch> |
8 | | - <ProductVersion>5.1.83.0-pre01</ProductVersion> |
| 8 | + <ProductVersion>5.1.83.0</ProductVersion> |
9 | 9 | <AssemblyVersion>5.1.83.0</AssemblyVersion> |
10 | 10 | <FileVersion>5.1.83.0</FileVersion> |
11 | | - <Version>5.1.83.0-pre01</Version> |
| 11 | + <Version>5.1.83.0</Version> |
12 | 12 | <Authors>Chromely Projects</Authors> |
13 | 13 | <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> |
16 | 16 | <PackageLicenseUrl>https://github.com/chromelyapps/Chromely/blob/master/LICENSE.md</PackageLicenseUrl> |
17 | 17 | <PackageProjectUrl>https://github.com/chromelyapps/Chromely</PackageProjectUrl> |
18 | 18 | <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> |
20 | 20 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
21 | 21 | <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 |
23 | 25 | </PackageReleaseNotes> |
24 | 26 | <RepositoryType>Github Repository</RepositoryType> |
25 | 27 | <RepositoryUrl>https://github.com/chromelyapps/Chromely</RepositoryUrl> |
|
29 | 31 |
|
30 | 32 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
31 | 33 | <PlatformTarget>AnyCPU</PlatformTarget> |
32 | | - <DocumentationFile>bin\Debug\netstandard2.1\Chromely.CefSharp.xml</DocumentationFile> |
| 34 | + <DocumentationFile>bin\Debug\$(TargetFramework)\Chromely.CefSharp.xml</DocumentationFile> |
33 | 35 | <NoWarn>1701;1702; NU5125;7035</NoWarn> |
34 | 36 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
35 | 37 | </PropertyGroup> |
36 | 38 |
|
37 | 39 | <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> |
39 | 41 | <NoWarn>1701;1702; NU5125;7035</NoWarn> |
40 | 42 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
41 | 43 | </PropertyGroup> |
42 | 44 |
|
43 | 45 | <ItemGroup> |
44 | 46 | <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" /> |
46 | 48 | <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.5" /> |
47 | 49 | <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.5" /> |
48 | 50 | <PackageReference Include="Microsoft.CSharp" Version="4.6.0" /> |
49 | 51 | <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" /> |
51 | 53 | </ItemGroup> |
52 | 54 |
|
53 | 55 | <ItemGroup> |
|
0 commit comments