-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMenees.Windows.Presentation.csproj
More file actions
23 lines (23 loc) · 1.01 KB
/
Menees.Windows.Presentation.csproj
File metadata and controls
23 lines (23 loc) · 1.01 KB
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.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>$(MeneesTargetNetCoreWindows);$(MeneesTargetNetFramework)</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<UseWPF>true</UseWPF>
<Description>WPF helpers and custom controls</Description>
<!-- Needed for Nullable support in .NET Framework. https://github.com/manuelroemer/Nullable#quickstart -->
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Menees.Common\Menees.Common.csproj" />
<ProjectReference Include="..\Menees.Windows\Menees.Windows.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="..\Menees.Windows.Forms\Images\AboutBoxBanner.bmp">
<Link>AboutBoxBanner.bmp</Link>
</Resource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="10.0.5" />
</ItemGroup>
</Project>