Ironically we can't test it on C# because the driver assumes
the partial class exists.
This commit is contained in:
Mark Probst 2018-03-31 16:32:36 -07:00
Родитель b2f0059c59
Коммит aae88a28f7
3 изменённых файлов: 12 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1 @@
"one"

Просмотреть файл

@ -0,0 +1,8 @@
{
"type": "string",
"enum": [
"one",
"three",
"two"
]
}

Просмотреть файл

@ -49,7 +49,9 @@ export const CSharpLanguage: Language = {
"31189.json" // JSON.NET doesn't accept year 0000 as 1BC, though it should
],
skipMiscJSON: false,
skipSchema: [],
skipSchema: [
"top-level-enum.schema" // The code we generate for top-level enums is incompatible with the driver
],
rendererOptions: {},
quickTestRendererOptions: [{ "array-type": "list" }, { "csharp-version": "5" }, { density: "dense" }],
sourceFiles: ["src/Language/CSharp.ts"]