-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3197
- Loading branch information
Showing
7 changed files
with
110 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?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> | ||
|
||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.WindowsDesktop" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<RootNamespace>CefSharp.Test</RootNamespace> | ||
<AssemblyName>CefSharp.Test</AssemblyName> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<UseWPF>true</UseWPF> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
<Platforms>x86;x64</Platforms> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\CefSharp\CefSharp.netcore.csproj" /> | ||
<ProjectReference Include="..\CefSharp.Core\CefSharp.Core.netcore.vcxproj" /> | ||
<ProjectReference Include="..\CefSharp.OffScreen\CefSharp.OffScreen.netcore.csproj" /> | ||
<ProjectReference Include="..\CefSharp.WinForms\CefSharp.WinForms.netcore.csproj" /> | ||
<ProjectReference Include="..\CefSharp.Wpf\CefSharp.Wpf.netcore.csproj" /> | ||
<ProjectReference Include="..\CefSharp.Example\CefSharp.Example.netcore.csproj" /> | ||
<PackageReference Condition="'$(PlatformTarget)' == 'x86'" Include="cef.redist.x86" Version="84.3.3" /> | ||
<PackageReference Condition="'$(PlatformTarget)' == 'x64'" Include="cef.redist.x64" Version="84.3.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Moq" Version="4.13.0" /> | ||
<PackageReference Include="Nito.AsyncEx.Context" Version="5.0.0" /> | ||
<PackageReference Include="Nito.AsyncEx.Coordination" Version="5.0.0" /> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
<PackageReference Include="xunit.extensibility.execution" Version="2.4.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" /> | ||
<PackageReference Include="Xunit.StaFact" Version="0.3.18" /> | ||
</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> | ||
|
||
<Import Project="$(SolutionDir)\CefSharp.AfterBuild.targets" /> | ||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk.WindowsDesktop" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters