-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWpfDemo.csproj
More file actions
23 lines (19 loc) · 830 Bytes
/
WpfDemo.csproj
File metadata and controls
23 lines (19 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3179.45" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\DocumentViewer.JSInterop\DocumentViewer.JSInterop.csproj" />
<ProjectReference Include="..\..\..\DynamicWebTWAIN.RESTClient\DynamicWebTWAIN.RESTClient.csproj" />
<ProjectReference Include="..\..\..\DynamicWebTWAIN.Service\DynamicWebTWAIN.Service.csproj" />
</ItemGroup>
<Import Project="..\..\..\DynamicWebTWAIN.Service\runtimes.targets" />
</Project>