[csharp] Delete and build samples (#13641)

* delete and build samples

* how did this not get committed?

* how did this not get committed?

* how did this not get committed?

* fixed csharp netcore functions

* reverted two files

* restored manually created tests

* reverted some unintentional changes

* restored unintended changes
This commit is contained in:
devhl-labs
2022-10-15 22:18:48 -04:00
committed by GitHub
parent cafdf64ca5
commit f11cb7f17d
379 changed files with 1980 additions and 16312 deletions

View File

@@ -304,7 +304,12 @@ public class CsharpNetcoreFunctionsServerCodegen extends AbstractCSharpCodegen {
setPackageGuid((String) additionalProperties.get(CodegenConstants.OPTIONAL_PROJECT_GUID));
}
additionalProperties.put("packageGuid", packageGuid);
additionalProperties.put("userSecretsGuid", userSecretsGuid);
if (!additionalProperties.containsKey("userSecretsGuid")) {
additionalProperties.put("userSecretsGuid", userSecretsGuid);
} else {
userSecretsGuid = (String) additionalProperties.get("userSecretsGuid");
}
if (!additionalProperties.containsKey(NEWTONSOFT_VERSION)) {
additionalProperties.put(NEWTONSOFT_VERSION, newtonsoftVersion);