15 lines
445 B
XML
15 lines
445 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net461</TargetFramework>
|
|
<RootNamespace>HashCalculator.GUI</RootNamespace>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DotNetKit.Wpf.AutoCompleteComboBox" Version="1.2.0" />
|
|
</ItemGroup>
|
|
</Project> |