1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-22 20:58:34 +01:00

fix naming in a few locations

This commit is contained in:
Ellpeck 2020-02-24 18:07:40 +01:00
parent d9dd558ed6
commit 61fa55524b
11 changed files with 26 additions and 6 deletions

View file

@ -2,7 +2,8 @@
"$schema": "http://json.schemastore.org/template", "$schema": "http://json.schemastore.org/template",
"author": "Ellpeck", "author": "Ellpeck",
"classifications": ["MLEM", "MonoGame"], "classifications": ["MLEM", "MonoGame"],
"identity": "MLEMTemplates.DesktopGL", "groupIdentity": "MLEM.Templates.DesktopGL",
"identity": "MLEM.Templates.DesktopGL",
"name": "MLEM DesktopGL", "name": "MLEM DesktopGL",
"shortName": "mlemdesktopgl", "shortName": "mlemdesktopgl",
"sourceName": "TemplateNamespace", "sourceName": "TemplateNamespace",
@ -13,7 +14,14 @@
}, },
"primaryOutputs": [ "primaryOutputs": [
{ {
"path": "mlemdesktopgl.csproj" "path": "TemplateNamespace.csproj"
}
],
"symbols": {
"framework": {
"type": "parameter",
"defaultValue": "net462",
"replaces": "net462"
}
} }
]
} }

View file

@ -2,7 +2,8 @@
"$schema": "http://json.schemastore.org/template", "$schema": "http://json.schemastore.org/template",
"author": "Ellpeck", "author": "Ellpeck",
"classifications": ["MLEM", "MonoGame"], "classifications": ["MLEM", "MonoGame"],
"identity": "MLEMTemplates.Portable", "groupIdentity": "MLEM.Templates.Portable",
"identity": "MLEM.Templates.Portable",
"name": "MLEM Portable", "name": "MLEM Portable",
"shortName": "mlemportable", "shortName": "mlemportable",
"sourceName": "TemplateNamespace", "sourceName": "TemplateNamespace",
@ -13,7 +14,14 @@
}, },
"primaryOutputs": [ "primaryOutputs": [
{ {
"path": "mlemportable.csproj" "path": "TemplateNamespace.csproj"
}
],
"symbols": {
"framework": {
"type": "parameter",
"defaultValue": "netstandard2.0",
"replaces": "netstandard2.0"
}
} }
]
} }