Skip to content

Commit f60cdee

Browse files
author
Kevin Jones
committed
Ditch the SHA1 sig.
1 parent 55f1d51 commit f60cdee

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<OutputType>Exe</OutputType>
4-
<AssemblyName>authlint</AssemblyName>
5-
<TargetFrameworks>net461</TargetFrameworks>
6-
<VersionPrefix>0.10.0</VersionPrefix>
7-
<Authors>Kevin Jones</Authors>
8-
<LangVersion>latest</LangVersion>
9-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10-
</PropertyGroup>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
<AssemblyName>authlint</AssemblyName>
5+
<TargetFrameworks>net461</TargetFrameworks>
6+
<VersionPrefix>0.11.0</VersionPrefix>
7+
<Authors>Kevin Jones</Authors>
8+
<LangVersion>latest</LangVersion>
9+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10+
<Copyright>Kevin Jones 2016-2017</Copyright>
11+
</PropertyGroup>
1112
<ItemGroup>
1213
<Reference Include="System.Security" />
13-
</ItemGroup>
14+
</ItemGroup>
1415
</Project>

build/build.proj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
</MSBuild>
2121
</Target>
2222
<Target Name="Sign" DependsOnTargets="Build">
23-
<Exec Command="signtool.exe sign /sha1 58D78D4D87C80E090A3E453E5039C1DCD464E7A3 /d &quot;$(ProductName)&quot; /du $(ProductUrl) /n &quot;$(ProductCompanyName)&quot; /ph /itos /t http://timestamp.digicert.com /fd SHA1 &quot;$(OutputDir)\authlint.exe&quot;" IgnoreExitCode="true" />
24-
<Exec Command="signtool.exe sign /sha1 58D78D4D87C80E090A3E453E5039C1DCD464E7A3 /as /d &quot;$(ProductName)&quot; /du $(ProductUrl) /n &quot;$(ProductCompanyName)&quot; /itos /ph /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 &quot;$(OutputDir)\authlint.exe&quot;" IgnoreExitCode="true" />
23+
<Exec Command="signtool.exe sign /sha1 58D78D4D87C80E090A3E453E5039C1DCD464E7A3 /nosealwarn /d &quot;$(ProductName)&quot; /du $(ProductUrl) /n &quot;$(ProductCompanyName)&quot; /itos /ph /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 &quot;$(OutputDir)\authlint.exe&quot;" />
2524
<Exec Command="signtool.exe sign /sha1 58D78D4D87C80E090A3E453E5039C1DCD464E7A3 /seal /tseal http://timestamp.digicert.com /td SHA256 &quot;$(OutputDir)\authlint.exe&quot;" />
2625
<!-- Run tool on itself -->
2726
<Exec Command="&quot;$(OutputDir)\authlint.exe&quot; -in &quot;$(OutputDir)\authlint.exe&quot;" />

0 commit comments

Comments
 (0)