mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* add how to article * Fix lint * Fix the code example * Add missing code * Update how-to-bind-to-an-enumeration.md * Update dotnet-desktop-guide/net/wpf/data/how-to-bind-to-an-enumeration.md Co-authored-by: Tom Dykstra <[email protected]> Co-authored-by: Tom Dykstra <[email protected]>
23 lines
713 B
XML
23 lines
713 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<RootNamespace>ArticleExampleVB</RootNamespace>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Import Include="System.Windows" />
|
|
<Import Include="System.Windows.Controls" />
|
|
<Import Include="System.Windows.Data" />
|
|
<Import Include="System.Windows.Documents" />
|
|
<Import Include="System.Windows.Input" />
|
|
<Import Include="System.Windows.Media" />
|
|
<Import Include="System.Windows.Media.Imaging" />
|
|
<Import Include="System.Windows.Navigation" />
|
|
<Import Include="System.Windows.Shapes" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|