-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecureHasher.csproj
More file actions
25 lines (25 loc) · 1018 Bytes
/
SecureHasher.csproj
File metadata and controls
25 lines (25 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>logo.ico</ApplicationIcon>
<Copyright>©Thorsten Bylicki</Copyright>
<PackageIcon>logo.png</PackageIcon>
<Description>SecureHasher ist eine moderne Windows-Anwendung in C#, die zentrale Sicherheitsfunktionen für Entwickler, Systemadministratoren und Power-User vereint.</Description>
<PackageProjectUrl>https://github.com/bylickilabs</PackageProjectUrl>
<RepositoryUrl>https://github.com/bylickilabs/SecureHasher</RepositoryUrl>S
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Content Include="logo.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>