Skip to content

Commit

Permalink
fixing schema url
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Mar 22, 2020
1 parent e10a9eb commit fcae48e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/schemas/v2/buildtools.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema",
"id": "https://xam.dev/buildtools.schema.json",
"id": "https://mobilebuildtools.com/schemas/v2/buildtools.schema.json",
"title": "Mobile.BuildTools Project Configuration",
"description": "Configures the Mobile.BuildTools. This file should generally be located next to the Solution file and be a central configuration for the entire solution.",
"definitions": {
Expand Down
2 changes: 1 addition & 1 deletion docs/schemas/v2/secretsconfig.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema",
"id": "https://xam.dev/secretsconfig.schema.json",
"id": "https://mobilebuildtools.com/schemas/v2/secretsconfig.schema.json",
"title": "Mobile.BuildTools Project Secrets Configuration",
"description": "This configuration file is meant to be at a Project level and define what specific Secrets are required and what types they will use.",
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion src/Mobile.BuildTools/Models/BuildToolsConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Mobile.BuildTools.Models
public class BuildToolsConfig
{
#if !SCHEMAGENERATOR
private string _schema = "https://xam.dev/buildtools.schema.json";
private string _schema = "https://mobilebuildtools.com/schemas/v2/buildtools.schema.json";
[JsonProperty("$schema")]
public string Schema
{
Expand Down
2 changes: 1 addition & 1 deletion src/Mobile.BuildTools/Utils/ConfigHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static void SaveDefaultConfig(string path)
Manifests = new TemplatedManifest
{
Disable = false,
Token = "$$",
Token = "$",
MissingTokensAsErrors = false,
VariablePrefix = "Manifest_"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/Mobile.BuildTools.Tests/Templates/buildtools.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "https://xam.dev/buildtools.schema.json",
"$schema": "https://mobilebuildtools.com/schemas/v2/buildtools.schema.json",
"debug": true
}

0 comments on commit fcae48e

Please sign in to comment.