Skip to content

Commit

Permalink
WebBrowser control based on CefGlue
Browse files Browse the repository at this point in the history
  • Loading branch information
s-fernandez-v committed Mar 4, 2022
1 parent d8d6a66 commit 3155dba
Show file tree
Hide file tree
Showing 7 changed files with 1,429 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ Src/Samples/
BuildManagedSDK.py
Samples.sln

Src/NoesisApp/Controls/*
Src/NoesisApp/Controls/DockManager
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.0.6</Version>
<Authors>Noesis Technologies</Authors>
<Description>Hosts and navigates between HTML documents</Description>
<Copyright>Copyright (c) 2013 Noesis Technologies S.L.</Copyright>
<PackageProjectUrl>https://www.noesisengine.com</PackageProjectUrl>
<PackageIconUrl>https://www.noesisengine.com/images/logos/Icon-256.png</PackageIconUrl>
<PackageIcon>Icon-256.png</PackageIcon>
<RepositoryUrl>https://github.com/Noesis/Managed/tree/master/Src/NoesisApp/Controls/WebBrowser</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>NoesisGUI XAML GUI C# Web Browser</PackageTags>
<PackageReleaseNotes>https://www.noesisengine.com/docs/Gui.Core.Changelog.html</PackageReleaseNotes>
<RootNamespace>NoesisApp</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageOutputPath>$(SolutionDir)NuGet\</PackageOutputPath>
<AssemblyVersion>1.0.6.0</AssemblyVersion>
<FileVersion>1.0.6.0</FileVersion>
</PropertyGroup>

<ItemGroup>
<None Include="$(SolutionDir)Icon-256.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<Content Include="build\**" PackagePath="build" Pack="true" />
<Content Include="buildTransitive\**" PackagePath="buildTransitive" Pack="true" />
<Content Include="cef\**" PackagePath="cef" Pack="true" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="CefGlue.Common" Version="91.4472.10" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\Noesis\Core\Noesis.GUI.csproj" />
</ItemGroup>

</Project>
Loading

0 comments on commit 3155dba

Please sign in to comment.