Skip to content

Commit

Permalink
modgen 2.2.1/vscode 2.2.1 (hotfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
JabX committed Dec 5, 2024
1 parent f38649a commit f4d0420
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion TopModel.Generator/TopModel.Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackAsTool>true</PackAsTool>
<PackageOutputPath>../.nupkg</PackageOutputPath>
<ToolCommandName>modgen</ToolCommandName>
<Version>2.2.0</Version>
<Version>2.2.1</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Authors>JabX;gideruette</Authors>
<Description>Générateur de modèle TopModel.</Description>
Expand Down
2 changes: 1 addition & 1 deletion TopModel.Utils/ModelUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public static string ToKebabCase(this string text)
/// <returns>Le texte en sortie.</returns>
public static string ToPascalCase(this string text, bool strict = false, bool strictIfUppercase = false)
{
if (strictIfUppercase && text.Equals(text, StringComparison.InvariantCultureIgnoreCase))
if (strictIfUppercase && text == text.ToUpperInvariant())
{
strict = true;
}
Expand Down
4 changes: 2 additions & 2 deletions TopModel.VSCode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions TopModel.VSCode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"directory": "TopModel.VSCode",
"type": "git"
},
"version": "2.2.0",
"version": "2.2.1",
"engines": {
"vscode": "^1.84.1"
},
Expand Down Expand Up @@ -81,15 +81,15 @@
"yamlValidation": [
{
"fileMatch": "topmodel*.config",
"url": "./language-server-net8.0/schema.config.json"
"url": "./language-server/schema.config.json"
},
{
"fileMatch": "tmdgen*.config",
"url": "./language-server-net8.0/schema.tmdgen.config.json"
"url": "./language-server/schema.tmdgen.config.json"
},
{
"fileMatch": "*.tmd",
"url": "./language-server-net8.0/schema.json"
"url": "./language-server/schema.json"
}
],
"languages": [
Expand Down
2 changes: 1 addition & 1 deletion samples/model/angular.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Javascript: 813bd1d0b6e6a08aff8900e52ef483ae
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/csharp.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Csharp: 1f47b333bf3d8c8acce3ee5d40956cc9
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/focus.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Javascript: 813bd1d0b6e6a08aff8900e52ef483ae
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/jpa.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Jpa: 4f75c07ccb7cfc4d25c7454af0863a56
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/pg.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Sql: 6c49105633a94d33dc5f26d6fece3a43
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/php.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Php: 8029e36a5806c385b25b725c2e00ecdc
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/ssdt.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Sql: 6c49105633a94d33dc5f26d6fece3a43
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion samples/model/translation.topmodel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ATTENTION CE FICHIER EST GENERE AUTOMATIQUEMENT !
#

version: 2.2.0
version: 2.2.1
custom:
../../../TopModel.Generator.Translation: 9f15a161c1cd09a554e17eb18f624495
generatedFiles:
Expand Down

0 comments on commit f4d0420

Please sign in to comment.