Skip to content

Commit 737bb8c

Browse files
committed
Moved SharpGltf.Codegen.Core to Src so it can be published as a package
1 parent d68fe5c commit 737bb8c

19 files changed

+11
-7
lines changed

SharpGLTF.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharpGLTF.Ext.Agi", "src\Sh
7979
EndProject
8080
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharpGLTF.Ext.3DTiles.Tests", "tests\SharpGLTF.Ext.3DTiles.Tests\SharpGLTF.Ext.3DTiles.Tests.csproj", "{373DF570-9782-419E-9AED-04BF2F1B2D89}"
8181
EndProject
82-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpGLTF.CodeGen.Core", "build\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj", "{35553DE5-C37C-431A-B6E9-A72D84AABDB9}"
82+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpGLTF.CodeGen.Core", "src\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj", "{35553DE5-C37C-431A-B6E9-A72D84AABDB9}"
8383
EndProject
8484
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpGLTF.codeGen.Extensions.Khronos", "build\SharpGLTF.codeGen.Extensions.Khronos\SharpGLTF.codeGen.Extensions.Khronos.csproj", "{688D381F-262F-48CF-B3B7-10EC757C3854}"
8585
EndProject
@@ -209,7 +209,7 @@ Global
209209
{F98E7E4B-EF27-48A0-BA56-730F14CEEEE1} = {072B725F-773F-4751-9616-E9778897C1D2}
210210
{6AB07AED-3DCE-422D-BE87-9379806F685C} = {072B725F-773F-4751-9616-E9778897C1D2}
211211
{373DF570-9782-419E-9AED-04BF2F1B2D89} = {0CBF510D-D836-40BA-95EC-E93FDBB90632}
212-
{35553DE5-C37C-431A-B6E9-A72D84AABDB9} = {D7D51F42-D08C-4DDA-88DA-AF008F10B644}
212+
{35553DE5-C37C-431A-B6E9-A72D84AABDB9} = {072B725F-773F-4751-9616-E9778897C1D2}
213213
{688D381F-262F-48CF-B3B7-10EC757C3854} = {D7D51F42-D08C-4DDA-88DA-AF008F10B644}
214214
{9F601A55-5AD0-4323-824F-AF7AC4ABEA7F} = {D7D51F42-D08C-4DDA-88DA-AF008F10B644}
215215
{93100BDB-1DDF-42B9-8C0D-816A0306A5EE} = {D7D51F42-D08C-4DDA-88DA-AF008F10B644}

build/SharpGLTF.CodeGen.Extensions.AGI/SharpGLTF.CodeGen.Extensions.AGI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
9+
<ProjectReference Include="..\..\src\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
1010
</ItemGroup>
1111

1212
</Project>

build/SharpGLTF.CodeGen.Extensions.Cesium/SharpGLTF.CodeGen.Extensions.Cesium.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
9+
<ProjectReference Include="..\..\src\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

build/SharpGLTF.CodeGen/SharpGLTF.CodeGen.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
16+
<ProjectReference Include="..\..\src\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
1717
<ProjectReference Include="..\SharpGLTF.CodeGen.Extensions.AGI\SharpGLTF.CodeGen.Extensions.AGI.csproj" />
1818
<ProjectReference Include="..\SharpGLTF.CodeGen.Extensions.Cesium\SharpGLTF.CodeGen.Extensions.Cesium.csproj" />
1919
<ProjectReference Include="..\SharpGLTF.codeGen.Extensions.Khronos\SharpGLTF.codeGen.Extensions.Khronos.csproj" />

build/SharpGLTF.codeGen.Extensions.Khronos/SharpGLTF.codeGen.Extensions.Khronos.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
9+
<ProjectReference Include="..\..\src\SharpGLTF.CodeGen.Core\SharpGLTF.CodeGen.Core.csproj" />
1010
</ItemGroup>
1111

1212
</Project>

build/SharpGLTF.CodeGen.Core/CodeGen/CSharpEmitter.RuntimeEnum.cs renamed to src/SharpGLTF.CodeGen.Core/CodeGen/CSharpEmitter.RuntimeEnum.cs

File renamed without changes.

build/SharpGLTF.CodeGen.Core/CodeGen/CSharpEmitter.RuntimeField.cs renamed to src/SharpGLTF.CodeGen.Core/CodeGen/CSharpEmitter.RuntimeField.cs

File renamed without changes.

build/SharpGLTF.CodeGen.Core/CodeGen/CSharpEmitter.RuntimeType.cs renamed to src/SharpGLTF.CodeGen.Core/CodeGen/CSharpEmitter.RuntimeType.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)