Skip to content

Commit ec7c0aa

Browse files
committed
Fixed broken logging.
1 parent 6afaec6 commit ec7c0aa

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

cscglobal-caplugin/CSCGlobalCAPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public async Task<EnrollmentResult> Enroll(string csr, string subject, Dictionar
221221
return new EnrollmentResult
222222
{
223223
Status = 30, //failure
224-
StatusMessage = "You cannot renew and expired cert please perform an new enrollment."
224+
StatusMessage = "You cannot renew an expired cert please perform an new enrollment."
225225
};
226226
}
227227

cscglobal-caplugin/CSCGlobalCAPlugin.csproj

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,23 @@
1313

1414

1515
<Target Name="CustomPostBuild" AfterTargets="PostBuildEvent">
16-
<Exec Condition="'$(Configuration)'=='DebugAndPush'"
17-
Command="PowerShell -ExecutionPolicy Bypass -File &quot;C:\Users\mkachkaev\source\repos\scripts\SyncScriptCSC.ps1&quot;&#xA;" />
16+
<Exec Condition="'$(Configuration)'=='DebugAndPush'" Command="PowerShell -ExecutionPolicy Bypass -File &quot;C:\Users\mkachkaev\source\repos\scripts\SyncScriptCSC.ps1&quot;&#xA;" />
1817
</Target>
1918

2019

21-
<ItemGroup>
20+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
21+
<PackageReference Include="Keyfactor.AnyGateway.IAnyCAPlugin" Version="3.1.0" />
22+
<PackageReference Include="Keyfactor.PKI" Version="8.1.1" />
23+
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
24+
</ItemGroup>
25+
26+
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
2227
<PackageReference Include="Keyfactor.AnyGateway.IAnyCAPlugin" Version="3.1.0" />
2328
<PackageReference Include="Keyfactor.PKI" Version="6.3.0" />
2429
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
2530
</ItemGroup>
2631

32+
2733
<ItemGroup>
2834
<None Update="manifest.json">
2935
<CopyToOutputDirectory>Always</CopyToOutputDirectory>

0 commit comments

Comments
 (0)