Browse Source

Update reference paths to allow for RC2 dev as well

feature/tb.update
NorbiPeti 1 year ago
parent
commit
b3b1e9b9e7
Signed by: NorbiPeti <szatmari.norbert.peter@gmail.com> GPG Key ID: DBA4C4549A927E56
4 changed files with 2336 additions and 2336 deletions
  1. +778
    -778
      CodeGenerator/CodeGenerator.csproj
  2. +778
    -778
      MakeEverythingPublicInGame/MakeEverythingPublicInGame.csproj
  3. +1
    -1
      MakeEverythingPublicInGame/Program.cs
  4. +779
    -779
      TechbloxModdingAPI/TechbloxModdingAPI.csproj

+ 778
- 778
CodeGenerator/CodeGenerator.csproj
File diff suppressed because it is too large
View File


+ 778
- 778
MakeEverythingPublicInGame/MakeEverythingPublicInGame.csproj
File diff suppressed because it is too large
View File


+ 1
- 1
MakeEverythingPublicInGame/Program.cs View File

@@ -13,7 +13,7 @@ foreach (var file in Directory.EnumerateFiles(@"../../../../../ref/Techblox_Data

void ProcessAssembly(string path)
{
var mod = ModuleDefinition.ReadModule(path, new(ReadingMode.Immediate) { ReadWrite = true });
using var mod = ModuleDefinition.ReadModule(path, new(ReadingMode.Immediate) { ReadWrite = true });
foreach (var typeDefinition in mod.Types)
{
typeDefinition.IsPublic = true;


+ 779
- 779
TechbloxModdingAPI/TechbloxModdingAPI.csproj
File diff suppressed because it is too large
View File


Loading…
Cancel
Save