Skip to content

Commit c051d9c

Browse files
committed
Use https in external links (docs and schema refs)
1 parent ba20f0f commit c051d9c

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/question.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: ''
88
---
99

1010
<!--
11-
Remember that no-one is getting paid to answer your question. You're basically asking other people to give up their time to help you out of the goodness of their heart – it's up to you to do all you can to make that as simple as possible, so read http://tinyurl.com/stack-checklist first.
11+
Remember that no-one is getting paid to answer your question. You're basically asking other people to give up their time to help you out of the goodness of their heart – it's up to you to do all you can to make that as simple as possible, so read https://tinyurl.com/stack-checklist first.
1212
-->
1313

1414
#### SUMMARY

docs/usage/meta.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class PersonDefinition : JsonApiResourceDefinition<Person, int>
6060
{
6161
return new Dictionary<string, object?>
6262
{
63-
["notice"] = "Check our intranet at http://www.example.com/employees/" +
63+
["notice"] = "Check our intranet at https://www.example.com/employees/" +
6464
$"{person.StringId} for personal details."
6565
};
6666
}
@@ -80,7 +80,7 @@ public class PersonDefinition : JsonApiResourceDefinition<Person, int>
8080
...
8181
},
8282
"meta": {
83-
"notice": "Check our intranet at http://www.example.com/employees/1 for personal details."
83+
"notice": "Check our intranet at https://www.example.com/employees/1 for personal details."
8484
}
8585
}
8686
]

src/Examples/DapperExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

src/Examples/DatabasePerTenantExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

src/Examples/GettingStarted/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

src/Examples/JsonApiDotNetCoreExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

src/Examples/MultiDbContextExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

src/Examples/NoEntityFrameworkExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

src/Examples/OpenApiKiotaClientExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"profiles": {
44
"Kestrel": {
55
"commandName": "Project",

src/Examples/OpenApiNSwagClientExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"profiles": {
44
"Kestrel": {
55
"commandName": "Project",

src/Examples/ReportsExample/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"iisSettings": {
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,

0 commit comments

Comments
 (0)