I need to be able to build and sign for strong named assembly cybersource-rest-client-dotnet.dll and AuthenticationSdk.dll as my ERP application is strongly signed and all DLLs referenced must also be strongly signed.
I am able to find the Git repository .NET Client SDK for the CyberSource REST API version 143 for .Net Framework 4.6.1 and successfully built and signed the DLL.
I can only find .Net Core repository for CyberSource Authentication
Where can I find the GitHub .Net Framework 4.61 version so I may build and sign?
The current AuthenticationSdk.dll 0.0.0.19 distributed by NuGet was built for .NET Framework 4.6.1
From ILSpy
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(/*Could not decode attribute arguments.*/)]
[assembly: AssemblyTitle("Authentication_SDK")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Authentication_SDK")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("910f28d1-8bd0-4359-aacb-b96c04cf68e8")]
[assembly: AssemblyFileVersion("0.0.0.19")]
[assembly: TargetFramework(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")]
[assembly: AssemblyVersion("0.0.0.19")]
Thanks, Tom
07-24-2024 08:43 AM