diff --git a/src/schemas/json/config.json b/src/schemas/json/config.json deleted file mode 100644 index 72710d65110..00000000000 --- a/src/schemas/json/config.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema#", - "properties": { - "Data": { - "type": "object" - } - }, - "title": "JSON schema for DNX configuration files", - "type": "object" -} diff --git a/src/test/config/with-database.json b/src/test/config/with-database.json deleted file mode 100644 index 53f11704c19..00000000000 --- a/src/test/config/with-database.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/config", - "Data": { - "DefaultConnection": { - "Connectionstring": "Server=(localdb)\\MSSQLLocalDB;Database=MusicStoreSpa;Trusted_Connection=True;" - }, - "IdentityConnection": { - "Connectionstring": "Server=(localdb)\\MSSQLLocalDB;Database=MusicStoreSpaIdentity;Trusted_Connection=True;" - } - }, - "DefaultAdminPassword": "YouShouldChangeThisPassword1!", - "DefaultAdminUsername": "Administrator" -} diff --git a/src/test/config/without-database.json b/src/test/config/without-database.json deleted file mode 100644 index 45ef166bb6e..00000000000 --- a/src/test/config/without-database.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/config", - "DefaultAdminPassword": "YouShouldChangeThisPassword1!", - "DefaultAdminUsername": "Administrator" -}