Add capture test

This commit is contained in:
huiyadanli
2023-10-07 11:26:26 +08:00
parent 088360fe8d
commit 9d8c07a2a9
12 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows10.0.22000.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Vision.WindowCapture\Vision.WindowCapture.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="CaptureTestWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>