Skip to content

Commit 06942ba

Browse files
committed
Corrected Get File Info
Corrected failure to build new version due to signing issue
1 parent dc42a19 commit 06942ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+554
-7
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

.vs/EncrypIT/FileContentIndex/read.lock

Whitespace-only changes.

.vs/EncrypIT/v17/.suo

34.5 KB
Binary file not shown.

.vs/ProjectSettings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"CurrentProjectSetting": null
3+
}

.vs/slnx.sqlite

240 KB
Binary file not shown.

EncrypIT/EncrypIT.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,20 @@
5555
<ApplicationIcon>LogoSymbol.ico</ApplicationIcon>
5656
</PropertyGroup>
5757
<PropertyGroup>
58-
<SignManifests>true</SignManifests>
58+
<SignManifests>false</SignManifests>
5959
</PropertyGroup>
6060
<PropertyGroup>
6161
<ManifestCertificateThumbprint>05A05CE246F70EF4B375FA16508A6BF73AD2E5F6</ManifestCertificateThumbprint>
6262
</PropertyGroup>
6363
<PropertyGroup>
64-
<SignAssembly>true</SignAssembly>
64+
<SignAssembly>false</SignAssembly>
6565
</PropertyGroup>
6666
<PropertyGroup>
6767
<ManifestTimestampUrl>http://tsa.starfieldtech.com</ManifestTimestampUrl>
6868
</PropertyGroup>
6969
<PropertyGroup>
70-
<AssemblyOriginatorKeyFile>SigningCertificate.pfx</AssemblyOriginatorKeyFile>
70+
<AssemblyOriginatorKeyFile>
71+
</AssemblyOriginatorKeyFile>
7172
</PropertyGroup>
7273
<PropertyGroup>
7374
<TargetZone>Internet</TargetZone>
@@ -127,7 +128,6 @@
127128
<DependentUpon>Settings.settings</DependentUpon>
128129
<DesignTimeSharedInput>True</DesignTimeSharedInput>
129130
</Compile>
130-
<None Include="SigningCertificate.pfx" />
131131
</ItemGroup>
132132
<ItemGroup>
133133
<None Include="App.config" />

EncrypIT/EncrypIT.csproj.user

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@
1010
<FallbackCulture>en-US</FallbackCulture>
1111
<VerifyUploadedFiles>false</VerifyUploadedFiles>
1212
</PropertyGroup>
13+
<PropertyGroup>
14+
<EnableSecurityDebugging>false</EnableSecurityDebugging>
15+
</PropertyGroup>
1316
</Project>

EncrypIT/Form1.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ private void Button6_Click(object sender, EventArgs e)
494494
string[] arrValue = Encrypt.Text.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
495495
foreach (string strValue in arrValue)
496496
{
497+
textBox4.AppendText(strValue.ToString());
497498
if (File.Exists(strValue) && (!strValue.Contains('"')) && (!strValue.Contains("'")))
498499
{
499500
textBox4.AppendText(Environment.NewLine);

0 commit comments

Comments
 (0)