mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<RootNamespace>CodeSampleVb</RootNamespace>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="stripes.jpg" />
|
|
<None Remove="test.xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="stripes.jpg">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="test.xml">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<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>
|