2020-07-23 07:21:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project>
|
|
|
|
|
<!-- Note: We cannot use the recommended style of specifying <Project Sdk=...> because we need
|
|
|
|
|
to set BaseIntermediateOutputPath and BaseOutputPath before the SDK props are imported. -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<BaseIntermediateOutputPath>obj.netcore\</BaseIntermediateOutputPath>
|
|
|
|
|
<BaseOutputPath>bin.netcore\</BaseOutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-07-05 13:59:17 +10:00
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
2020-07-23 07:21:14 +02:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-07-05 13:59:17 +10:00
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2020-07-23 07:21:14 +02:00
|
|
|
<RootNamespace>CefSharp.Example</RootNamespace>
|
|
|
|
|
<AssemblyName>CefSharp.Example</AssemblyName>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
2021-07-30 23:30:59 +03:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-07-23 07:21:14 +02:00
|
|
|
</PropertyGroup>
|
2021-07-30 23:30:59 +03:00
|
|
|
|
2020-07-23 07:21:14 +02:00
|
|
|
<ItemGroup>
|
2020-12-16 10:47:34 +10:00
|
|
|
<ProjectReference Include="..\CefSharp.Core\CefSharp.Core.netcore.csproj" />
|
2020-07-23 07:21:14 +02:00
|
|
|
<ProjectReference Include="..\CefSharp\CefSharp.netcore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Extensions\set_page_color\icon.png" />
|
|
|
|
|
<Content Include="Extensions\set_page_color\popup.html" />
|
|
|
|
|
<Content Include="Extensions\set_page_color\popup.js" />
|
|
|
|
|
<Content Include="Resources\assets\css\docs.css" />
|
|
|
|
|
<Content Include="Resources\assets\css\shCore.css" />
|
|
|
|
|
<Content Include="Resources\assets\css\shCoreDefault.css" />
|
|
|
|
|
<Content Include="Resources\assets\js\application.js" />
|
|
|
|
|
<Content Include="Resources\assets\js\jquery.js" />
|
|
|
|
|
<Content Include="Resources\assets\js\shBrushCSharp.js" />
|
|
|
|
|
<Content Include="Resources\assets\js\shCore.js" />
|
2020-07-24 21:07:29 +10:00
|
|
|
<Content Include="Resources\BindingTestAsync.js" />
|
|
|
|
|
<Content Include="Resources\BindingTestNetCore.html" />
|
2020-07-23 07:21:14 +02:00
|
|
|
<Content Include="Resources\BindingTestsAsyncTask.html" />
|
|
|
|
|
<Content Include="Resources\BindingApiCustomObjectNameTest.html" />
|
|
|
|
|
<Content Include="Resources\BindingTestSingle.html" />
|
2020-07-24 21:07:29 +10:00
|
|
|
<Content Include="Resources\BindingTestSync.js" />
|
2020-07-23 07:21:14 +02:00
|
|
|
<Content Include="Resources\DragDropCursorsTest.html" />
|
|
|
|
|
<Content Include="Resources\JavascriptCallbackTest.html" />
|
|
|
|
|
<Content Include="Resources\LegacyBindingTest.html" />
|
|
|
|
|
<Content Include="Resources\CdmSupportTest.html" />
|
|
|
|
|
<Content Include="Resources\CssAnimation.html" />
|
|
|
|
|
<Content Include="Resources\ExceptionTest.html" />
|
|
|
|
|
<Content Include="Resources\BindingTest.html" />
|
|
|
|
|
<Content Include="Resources\bootstrap\bootstrap-theme.min.css" />
|
|
|
|
|
<Content Include="Resources\bootstrap\bootstrap.min.css" />
|
|
|
|
|
<Content Include="Resources\bootstrap\bootstrap.min.js" />
|
|
|
|
|
<Content Include="Resources\extension.js" />
|
|
|
|
|
<Content Include="Resources\MultiBindingTest.html" />
|
|
|
|
|
<Content Include="Resources\home.html" />
|
|
|
|
|
<Content Include="Resources\FramedWebGLTest.html" />
|
|
|
|
|
<Content Include="Resources\PopupTest.html" />
|
|
|
|
|
<Content Include="Resources\DraggableRegionTest.html" />
|
|
|
|
|
<Content Include="Resources\PostMessageTest.html" />
|
|
|
|
|
<Content Include="Resources\Recaptcha.html" />
|
|
|
|
|
<Content Include="Resources\ResponseFilterTest.html" />
|
|
|
|
|
<Content Include="Resources\SchemeTest.html" />
|
|
|
|
|
<Content Include="Resources\ScriptedMethodsTest.html" />
|
|
|
|
|
<Content Include="Resources\UnicodeExampleGreaterThan32kb.html" />
|
|
|
|
|
<Content Include="Resources\UnocodeExampleEqualTo32kb.html" />
|
|
|
|
|
<Content Include="Resources\TooltipTest.html" />
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- Don't include items from the "bin" and "obj" folders used by the .NET Framework projects. -->
|
|
|
|
|
<None Remove="bin/**/*.*" />
|
|
|
|
|
<None Remove="obj/**/*.*" />
|
|
|
|
|
<Compile Remove="obj/**/*.*" />
|
|
|
|
|
</ItemGroup>
|
2022-02-13 19:58:35 -08:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="ModelBinding\PropertyInterceptorLogger.cs" />
|
|
|
|
|
</ItemGroup>
|
2024-09-28 12:14:32 +10:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2020-07-23 07:21:14 +02:00
|
|
|
|
2025-07-05 13:59:17 +10:00
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
2020-07-23 07:21:14 +02:00
|
|
|
</Project>
|