Skip to content

Commit f15fd77

Browse files
committed
Multiple Files and Users
Added ability to encrypt or decrypt multiple drag and drop files as well as users. Also signed the assembly with a self signed certificate and applied a Microsoft basic rule set
1 parent 75e151a commit f15fd77

26 files changed

+370
-193
lines changed

.vs/EncrypIT/v16/.suo

-15.5 KB
Binary file not shown.

EncrypIT/EncrypIT.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<FileAlignment>512</FileAlignment>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<Deterministic>true</Deterministic>
15+
<IsWebBootstrapper>false</IsWebBootstrapper>
1516
<PublishUrl>publish\</PublishUrl>
1617
<Install>true</Install>
1718
<InstallFrom>Disk</InstallFrom>
@@ -24,7 +25,6 @@
2425
<MapFileExtensions>true</MapFileExtensions>
2526
<ApplicationRevision>0</ApplicationRevision>
2627
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27-
<IsWebBootstrapper>false</IsWebBootstrapper>
2828
<UseApplicationTrust>false</UseApplicationTrust>
2929
<BootstrapperEnabled>true</BootstrapperEnabled>
3030
</PropertyGroup>
@@ -37,6 +37,7 @@
3737
<DefineConstants>DEBUG;TRACE</DefineConstants>
3838
<ErrorReport>prompt</ErrorReport>
3939
<WarningLevel>4</WarningLevel>
40+
<CodeAnalysisRuleSet>EncrypIT.ruleset</CodeAnalysisRuleSet>
4041
</PropertyGroup>
4142
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4243
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -46,6 +47,8 @@
4647
<DefineConstants>TRACE</DefineConstants>
4748
<ErrorReport>prompt</ErrorReport>
4849
<WarningLevel>4</WarningLevel>
50+
<CodeAnalysisRuleSet>EncrypIT.ruleset</CodeAnalysisRuleSet>
51+
<RunCodeAnalysis>false</RunCodeAnalysis>
4952
</PropertyGroup>
5053
<PropertyGroup>
5154
<ApplicationIcon>LogoSymbol.ico</ApplicationIcon>
@@ -63,7 +66,7 @@
6366
<ManifestTimestampUrl>http://tsa.starfieldtech.com</ManifestTimestampUrl>
6467
</PropertyGroup>
6568
<PropertyGroup>
66-
<AssemblyOriginatorKeyFile>OsborneProSignAssembly.pfx</AssemblyOriginatorKeyFile>
69+
<AssemblyOriginatorKeyFile>SigningCertificate.pfx</AssemblyOriginatorKeyFile>
6770
</PropertyGroup>
6871
<ItemGroup>
6972
<Reference Include="System" />
@@ -99,8 +102,7 @@
99102
<AutoGen>True</AutoGen>
100103
<DependentUpon>Resources.resx</DependentUpon>
101104
</Compile>
102-
<None Include="OPCodeSigningCert.pfx" />
103-
<None Include="OsborneProSignAssembly.pfx" />
105+
<None Include="EncrypIT.ruleset" />
104106
<None Include="Properties\Settings.settings">
105107
<Generator>SettingsSingleFileGenerator</Generator>
106108
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -110,6 +112,7 @@
110112
<DependentUpon>Settings.settings</DependentUpon>
111113
<DesignTimeSharedInput>True</DesignTimeSharedInput>
112114
</Compile>
115+
<None Include="SigningCertificate.pfx" />
113116
</ItemGroup>
114117
<ItemGroup>
115118
<None Include="App.config" />

EncrypIT/EncrypIT.ruleset

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<RuleSet Name="Rules for EncrypIT" Description="Code analysis rules for EncrypIT.csproj." ToolsVersion="16.0" />

EncrypIT/Form1.Designer.cs

Lines changed: 45 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)