-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathDemo.Wpf.csproj
More file actions
25 lines (25 loc) · 1.05 KB
/
Copy pathDemo.Wpf.csproj
File metadata and controls
25 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net471;net6-windows</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<UseWpf>true</UseWpf>
<RootNamespace>Demo.Wpf</RootNamespace>
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**\*.*" Exclude="Resources\**\Icon.ico" />
<Resource Include="Resources\**\Icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetBrowser" Version="4.1.0" />
<PackageReference Include="DotNetBrowser.WPF" Version="4.1.0" />
<PackageReference Include="System.Drawing.Common" Version="4.6.0" Condition="'$(TargetFramework)'=='net6-windows'" />
<PackageReference Include="Google.Protobuf" Version="3.32.0" />
</ItemGroup>
</Project>