I am trying out ditributed processing for the first time, and have successfully set up a node. However, tests that rely on settings found in the project user secrets appear to be unavailable to the node. is there a way to copy user screts to the node that I have missed?
Example:
appsettings.json
Code:
{
"My": {
"Setting":"#{Placeholder}#"
}
}
secrets.json
Code:
{
"My": {
"Setting":"42"
}
}
Test fails with message:
System.InvalidOperationException: Failed to convert '#{Placeholder}#' to type 'System.Int32'.
'Copy Referenced Assemblies To Workspace' is turned on.