22 lines
732 B
XML
22 lines
732 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<ApplicationIcon>icons8_data_encryption.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Pilz.Cryptography" Version="2.1.1" />
|
|
<PackageReference Include="UI.for.WinForms.Common" Version="2024.3.806" />
|
|
<PackageReference Include="UI.for.WinForms.Themes" Version="2024.3.806" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Pilz.Tools.Symbols\Pilz.Tools.Symbols.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |