diff --git a/src/api/json/catalog.json b/src/api/json/catalog.json index e20d4778fb6..73b0cb65ed4 100644 --- a/src/api/json/catalog.json +++ b/src/api/json/catalog.json @@ -1156,12 +1156,6 @@ "fileMatch": ["cdmanifest.json", "cgmanifest.json"], "url": "https://json.schemastore.org/component-detection-manifest.json" }, - { - "name": "config.json", - "description": "ASP.NET project config file", - "fileMatch": ["config.json"], - "url": "https://json.schemastore.org/config.json" - }, { "name": "contribute.json", "description": "A JSON schema for open-source project contribution data by Mozilla", 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" -}