This commit is contained in:
2026-06-01 11:58:11 +02:00
parent e0dc6e4d6e
commit 96becf3607
181 changed files with 3764 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>MagSec Encrypter</AssemblyName>
<Title>MagSec Encrypter</Title>
<Product>MagSec Encrypter</Product>
<ApplicationIcon>magsec_logo.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="magsec_logo.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="magsec_logo_transparent.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>