-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ver 2.0
- Loading branch information
Showing
275 changed files
with
21,236 additions
and
539,698 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.29613.14 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.7.34003.232 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Abdal Blowfish Encryption", "Abdal Security Group App\Abdal Blowfish Encryption.csproj", "{3FCEC922-6A9D-402F-B0FB-2EAB7CCEB570}" | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Abdal Security Group App", "Abdal Security Group App.csproj", "{DB996DBC-3542-4FF7-8713-2A1ED352234B}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{3FCEC922-6A9D-402F-B0FB-2EAB7CCEB570}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{3FCEC922-6A9D-402F-B0FB-2EAB7CCEB570}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{3FCEC922-6A9D-402F-B0FB-2EAB7CCEB570}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{3FCEC922-6A9D-402F-B0FB-2EAB7CCEB570}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{DB996DBC-3542-4FF7-8713-2A1ED352234B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{DB996DBC-3542-4FF7-8713-2A1ED352234B}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{DB996DBC-3542-4FF7-8713-2A1ED352234B}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{DB996DBC-3542-4FF7-8713-2A1ED352234B}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {3EF325D7-AE23-4F7D-B473-F9123C1BE9F9} | ||
SolutionGuid = {E3CAEEF9-4A94-4E5B-856A-94816633812C} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net7.0-windows</TargetFramework> | ||
<RootNamespace>Abdal_Security_Group_App</RootNamespace> | ||
<Nullable>enable</Nullable> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<Version>2.0</Version> | ||
<AssemblyVersion>2.0</AssemblyVersion> | ||
<FileVersion>2.0</FileVersion> | ||
<AssemblyName>Abdal Blowfish Encryption</AssemblyName> | ||
<ApplicationIcon>Dev\UI\logo.ico</ApplicationIcon> | ||
<PackageIcon>128.png</PackageIcon> | ||
<Copyright>Programmer: Ebrahim Shafiei (EbraSha)</Copyright> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Dev\**" /> | ||
<EmbeddedResource Remove="Dev\**" /> | ||
<None Remove="Dev\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="compile.bat" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Dev\UI\logo.ico" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="Dev\Sound\ab-us-two.wav" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="Dev\Sound\ab-us.wav" /> | ||
<None Include="Dev\UI\128.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="ChilkatDnCore" Version="9.50.99" /> | ||
<PackageReference Include="Microsoft.Windows.Compatibility" Version="8.0.8" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="System.Runtime.Serialization.Schema" Version="8.0.0" /> | ||
<PackageReference Include="UI.for.WinForms.AllControls.Net70" Version="2023.2.718" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Resources\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Compile Update="about_us.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="EncText.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="full_about_us.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="Legal_disclaimer.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="Main.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="RawText.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
</ItemGroup> | ||
</Project> |
129 changes: 0 additions & 129 deletions
129
Abdal Security Group App/Abdal Blowfish Encryption (2).csproj
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.