| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This is a NuGet package for consuming self-contained SigningServer.Client executables which do not need any .net runtime installed.
This package is useful if you want to consume the signing client from a platform having .net installed, but then passing it to an environment without .net (e.g. within a Docker container).
These packages bundle the latest .net runtime available during the release. With Self Contained applications you do not benefit from Updates and Security patches on the .net runtime.
If you need a release with newer/alternative runtime versions embedded, open an issue at https://github.com/Danielku15/SigningServer/issues
You can also vote for this improvement to automate the process.
To consume this package you need some mechanism of restoring a .net package locally. Either you might do this manually and use the binaries directly, or you might install this package in a C# project belonging to your CI/CD pipeline (e.g. when using Nuke).
If you consume this package via a PackageReference you will have following MSBuild properties available in this csproj for passing it further to your application via custom means.
You can also use GeneratePathProperty to traverse the folder structure yourself.
Info: Descriptions are at the end as // description
root/ ├─ build/ │ ├─ SigningServer.StandaloneClient.props // the MSBuild props file - automatically imported into csprojs ├─ tools/ // Entry point for platform specific folders │ ├─ linux-x64/ // Multiple platform specific folders with binaries you need to copy for execution │ │ ├─ SigningServer.Client // The main executable binary for the signing client (might need to set chmod for execution) │ │ ├─ libcoreclr.so // potential runtime dependencies which you need to copy along for execution │ │ ├─ ... │ ├─ win-x64/ // folder for every supported RID │ │ ├─ SigningServer.Client.exe // The main executable binary for the signing client │ │ ├─ coreclr.dll // potential runtime dependencies which you need to copy along for execution │ │ ├─ ...
| Back | FazBrowse Home | New Git URL |