Skip to content

Commit

Permalink
Added code to explicitly remove ObjectCreationWindow so old projects …
Browse files Browse the repository at this point in the history
…compile without having to remove it manually.
  • Loading branch information
vchelaru committed Jul 9, 2024
1 parent 84f98f1 commit d05de9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
<EmbeddedResource Include="GlueControl\Embedded\Editing\SelectionLogic.cs" />
<EmbeddedResource Include="GlueControl\Embedded\Editing\VariableAssignmentLogic.cs" />
<EmbeddedResource Include="GlueControl\Embedded\Editing\Visuals\Arrow.cs" />
<EmbeddedResource Include="GlueControl\Embedded\Forms\ObjectCreationWindow.cs" />
<EmbeddedResource Include="GlueControl\Embedded\GlueCallsClassGenerationManager.cs" />
<EmbeddedResource Include="GlueControl\Embedded\GlueControlManager.cs" />
<EmbeddedResource Include="GlueControl\Embedded\InstanceLogic.cs" />
Expand Down Expand Up @@ -198,6 +197,7 @@
</ItemGroup>

<ItemGroup>
<Folder Include="GlueControl\Embedded\Forms\" />
<Folder Include="GlueControl\Models\" />
<Folder Include="GlueControl\Profiling\" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ public static void EmbedAll(bool fullyGenerate)

// This was a typo in old projects:
RemoveEmbeddedFile("Runtime/DynamicEntitys.Generated.cs", saveAfterRemoving:true);
// This is no longer used, so get rid of it:
RemoveEmbeddedFile("Forms/ObjectCreationWindow.Generated.cs", saveAfterRemoving:true);


// this was moved:
FilePath oldGameConnectionManagerLocation = GlueState.Self.CurrentGlueProjectDirectory + "GlueCommunication/GameConnectionManager.Generated.cs";
Expand Down

0 comments on commit d05de9b

Please sign in to comment.