Skip to content

Commit ca9ba49

Browse files
committed
Code generation changes
1 parent b840fc0 commit ca9ba49

File tree

5 files changed

+4
-11
lines changed

5 files changed

+4
-11
lines changed

build/SharpGLTF.CodeGen/Ext.EXT_InstanceFeatures.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace SharpGLTF
66
{
7-
class ExtInstanceFeaturesExtension : SchemaProcessor
7+
class InstanceFeaturesExtension : SchemaProcessor
88
{
99
public override string GetTargetProject() { return Constants.CesiumProjectDirectory; }
1010

build/SharpGLTF.CodeGen/Ext.EXT_MeshFeatures.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace SharpGLTF
77
{
8-
class ExtMeshFeaturesExtension : SchemaProcessor
8+
class MeshFeaturesExtension : SchemaProcessor
99
{
1010
public override string GetTargetProject() { return Constants.CesiumProjectDirectory; }
1111

build/SharpGLTF.CodeGen/Ext.EXT_Structural_Metadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace SharpGLTF
66
{
7-
class ExtStructuralMetadataExtension : SchemaProcessor
7+
class StructuralMetadataExtension : SchemaProcessor
88
{
99
public override string GetTargetProject() { return Constants.CesiumProjectDirectory; }
1010

build/SharpGLTF.CodeGen/Program.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,6 @@ static void Main(string[] args)
6363
// other
6464
processors.Add(new XmpJsonLdExtension());
6565

66-
processors.Add(new ExtMeshFeaturesExtension());
67-
68-
processors.Add(new ExtInstanceFeaturesExtension());
69-
70-
processors.Add(new ExtStructuralMetadataExtension());
71-
72-
7366
// ---------------------------------------------- process all files
7467

7568
foreach (var processor in processors)

build/SharpGLTF.CodeGen/SchemaDownload.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static void Syncronize(string remoteUrl, string remoteBranch, string loca
1515
{
1616
Console.WriteLine($"Cloning {remoteUrl} can take several minutes; Please wait...");
1717

18-
LibGit2Sharp.Repository.Clone(remoteUrl, localDirectory, new CloneOptions() { BranchName = remoteBranch });
18+
LibGit2Sharp.Repository.Clone(remoteUrl, localDirectory, new LibGit2Sharp.CloneOptions() { BranchName = remoteBranch });
1919

2020
Console.WriteLine($"... Clone Completed");
2121

0 commit comments

Comments
 (0)