mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* Improve collection-type dp snippets that are readonly. * Add article, snippets, toc, and redirects * Minor edit * Update target framework to .NET 6.0
23 lines
709 B
XML
23 lines
709 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<RootNamespace>CodeSampleVb</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>
|