├── .vs ├── SourceCode_VS2012 │ └── v14 │ │ └── .suo └── SourceCode_VS2015 │ └── v14 │ └── .suo ├── Demo ├── DotNet20 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet20_VS2010.csproj │ └── app.config ├── DotNet20_x64 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet20_x64_VS2010.csproj │ └── app.config ├── DotNet35 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet35_VS2010.csproj │ ├── Test_DotNet35_VS2012.csproj │ └── app.config ├── DotNet35_x64 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet35_x64_VS2010.csproj │ ├── Test_DotNet35_x64_VS2012.csproj │ └── app.config ├── DotNet40 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet40_VS2010.csproj │ ├── Test_DotNet40_VS2012.csproj │ └── app.config ├── DotNet40_x64 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet40_x64_VS2010.csproj │ ├── Test_DotNet40_x64_VS2010.v11.suo │ ├── Test_DotNet40_x64_VS2012.csproj │ └── app.config ├── DotNet45 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet45_VS2012.csproj │ └── app.config ├── DotNet45_x64 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet45_x64_VS2012.csproj │ └── app.config ├── DotNet46 │ ├── .vs │ │ └── Test_DotNet46_VS2015 │ │ │ └── v14 │ │ │ └── .suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet46_VS2015.csproj │ └── app.config ├── DotNet462 │ ├── .vs │ │ └── Test_DotNet462_VS2015 │ │ │ └── v14 │ │ │ └── .suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet462_VS2015.csproj │ ├── Test_DotNet462_VS2015.sln │ └── app.config ├── DotNet462_x64 │ ├── .vs │ │ ├── Test_DotNet462_x64_VS2015 │ │ │ └── v14 │ │ │ │ └── .suo │ │ └── Test_DotNet46_x64_VS2015 │ │ │ └── v14 │ │ │ └── .suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet462_x64_VS2015.csproj │ ├── Test_DotNet462_x64_VS2015.sln │ └── app.config ├── DotNet46_x64 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_DotNet46_x64_VS2015.csproj │ └── app.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── General │ ├── AOP │ │ ├── AOP.cs │ │ ├── AOP_Extra.cs │ │ └── AOP_Test.cs │ ├── Addition.cs │ ├── InjectionHelper.cs │ ├── Program.cs │ ├── RealTokens.cs │ ├── SDILReader │ │ ├── Globals.cs │ │ ├── ILInstruction.cs │ │ └── MethodBodyReader.cs │ ├── ShortLinq.cs │ └── TypeTemplate │ │ ├── TypeTemplate.cs │ │ └── TypeTemplate_Test.cs ├── InjectionHelper.cs └── Program.cs ├── Info.txt ├── Injection ├── ICorJitCompiler.cpp ├── ICorJitCompiler.h ├── Injection.aps ├── Injection.cpp ├── Injection.def ├── Injection.h ├── Injection.rc ├── Injection.vcxproj.user ├── Injection_VS2012.vcxproj ├── Injection_VS2012.vcxproj.filters ├── Injection_VS2012.vcxproj.user ├── Injection_VS2015.vcxproj ├── Injection_VS2015.vcxproj.filters ├── Injection_VS2015.vcxproj.user ├── Injection_VS2017.vcxproj ├── Injection_VS2017.vcxproj.filters ├── Injection_VS2017.vcxproj.user ├── Inspection.cpp ├── Inspection.h ├── LoadedMethodDescIterator.cpp ├── LoadedMethodDescIterator.h ├── MethodDesc.cpp ├── MethodDesc.h ├── PdbHelper.cpp ├── PdbHelper.h ├── ReadMe.txt ├── SymbolAddressCache.cpp ├── SymbolAddressCache.h ├── Utility.cpp ├── Utility.h ├── dllmain.cpp ├── res │ ├── 004D1D9A6FA07E489B4A58736BCBD2AF#64_4_0_30319_18010 │ ├── 01A2B1CAA27F9ACA9F256DAC6C11E493#64_2_0_50727_3625 │ ├── 01CBD8FAFAFDFFB0B9EDABBF13508D96#32_2_0_50727_8662 │ ├── 0637164260A7E75EFE0A9E3F2F29893D#64_4_6_1038_0 │ ├── 0A68A041FFA1857BB5736F7B35ED757F#32_4_6_1078_0 │ ├── 0C71552D9D1304052126B397A95BC106#64_2_0_50727_8689 │ ├── 102A78CB6405B22FF019ED8465C14B1F#32_4_0_30319_17379 │ ├── 1395B4487D0FBD6F3DC0750A49A9F101#64_4_0_30319_18408 │ ├── 188D7905AE4C49101B1731F61F6EF570#32_4_5_27_0 │ ├── 1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0 │ ├── 1BC333D76444B51B01A74B7447ADBC9E#64_2_0_50727_4963 │ ├── 1C88CF5977C016A37BFAC1178DAA7822#32_2_0_50727_3634 │ ├── 215CE077258CEDD5BE4C56E9D614DB9F#32_4_0_30319_269 │ ├── 259AF6E8D5E3E28B8299FAA65473FB62#32_4_0_30319_18408 │ ├── 25CEE067AED86FF988C8D31BD7212A21#32_2_0_50727_8745 │ ├── 2FAFB5EDCDBE9CB2DA4535910C15DC9D#32_4_6_1055_0 │ ├── 34460D340829C7AAF75385AF1F626307#32_4_0_30319_17626 │ ├── 371F93342A4BBA90CDB2E93F84C025DE#64_4_0_30319_239 │ ├── 39B78898107DF43CE16D8A4567AFC216#64_2_0_50727_8662 │ ├── 3CA4ADDA47D97DDF412893F1D03EA6F6#64_2_0_50727_4971 │ ├── 42A5549F92DD52A1F75470E4A38B5A49#32_4_0_30319_225 │ ├── 44A38DA547FBFEB2F2B3D480728805DE#32_2_0_50727_4963 │ ├── 4552F8F61A7975C2359D19673483604D#32_2_0_50727_5456 │ ├── 58BC28F39D2801178246762D004D6252#64_2_0_50727_8745 │ ├── 5C937FE10EF2887B220BAE1F8795FAC6#64_4_6_1076_0 │ ├── 65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0 │ ├── 658EAE54D2F7C729B5D7768715DE071D#32_4_6_1532_0 │ ├── 6FAA411F45271A95A8445A715F129B5E#32_4_6_1076_0 │ ├── 7210D35665FB3A0353A2B7AD2ACB293C#32_4_6_1586_0 │ ├── 72FF1E427AFF95B8F062601A8C137A56#64_4_6_1055_0 │ ├── 744747615F2F8B13BF6C3DA8A04A9AF7#32_4_6_1038_0 │ ├── 7871D332FFCA5B18C77313270E343048#64_4_6_1532_0 │ ├── 7FEEE354FEB26A9612E07596BBE53AB2#64_4_6_81_0 │ ├── 836B35C5C8C5E6DE6CB0035D075755C7#64_4_0_30319_34209 │ ├── 88565B7C81145709F919AB75EAE004B6#32_2_0_50727_5710 │ ├── 8FB77F240152EA24452E6C467147E54F#32_4_6_81_0 │ ├── 951500AD4685B89423AB52665CADF653#64_2_0_50727_5448 │ ├── 96076B8FCDFF3C6DB4CCFBF7FE3A9B28#32_2_0_50727_5448 │ ├── 9B8F2F20589230F09C70BA0A9C589C9F#64_2_0_50727_5485 │ ├── A05C0003E8D7CEA359A439690554F8BB#64_2_0_50727_5456 │ ├── A15811EF4A3D20F6C7D67C4673014E18#32_4_0_30319_34209 │ ├── A4ED0EF4828C874B45896018E523CDE6#64_2_0_50727_6387 │ ├── A696FF8482F1F23C6C883116FD0C417D#64_4_0_30319_17379 │ ├── AD6B6C89CC0A53338E000CC887610D71#64_4_0_30319_17929 │ ├── BB274238CE9F8A55EE81848D033F6658#64_4_6_1078_0 │ ├── C42AE64F5DB6BC5E947B7E3E1B1E633E#32_2_0_50727_4223 │ ├── CF96AE49A34CE525D735A2666FF53CD6#64_4_0_30319_269 │ ├── D729EE48C8F0994FD556C684140C66D4#32_2_0_50727_8689 │ ├── D7FFCA48DB0B62DE58837ADE767398DF#64_4_5_27_0 │ ├── D971C845B82D877107906335EFF1824C#32_2_0_50727_8670 │ ├── E2B08878EFDF9CEDB416BFDBAA6289EC#32_4_6_106_0 │ ├── E44031537009FBCF3D780C7BD0837E38#64_4_6_106_0 │ ├── E4A1EF32903C4CC840121F4F5027FF0A#64_2_0_50727_3634 │ ├── EDFA707192B2965E4C90A9DA0F4E380F#64_4_6_1586_0 │ ├── EEC5D34CF58F5F45A3D383E913912CC9#64_2_0_50727_8670 │ ├── EF5B2B3E4C0EA504A49C34D826319221#64_4_0_30319_1 │ ├── F43F70AF86B02890FCF95ED91EA373BB#32_4_0_30319_17929 │ ├── F64FD5C7FEF7FC25CBA37974FF3584D7#32_4_0_30319_239 │ └── FF98EF5A50EA52FA115FE60B0F0A92B1#32_2_0_50727_5485 ├── resource.h ├── stdafx.cpp └── stdafx.h ├── Injection_setRealJit ├── ICorJitCompiler.cpp ├── ICorJitCompiler.h ├── Injection.aps ├── Injection.cpp ├── Injection.def ├── Injection.h ├── Injection.rc ├── Injection.vcxproj.user ├── Injection_setRealJit_VS2012.vcxproj ├── Injection_setRealJit_VS2012.vcxproj.filters ├── Injection_setRealJit_VS2012.vcxproj.user ├── Injection_setRealJit_VS2015.vcxproj ├── Injection_setRealJit_VS2015.vcxproj.filters ├── Injection_setRealJit_VS2015.vcxproj.user ├── Injection_setRealJit_VS2017.vcxproj ├── Injection_setRealJit_VS2017.vcxproj.filters ├── Injection_setRealJit_VS2017.vcxproj.user ├── Inspection.cpp ├── Inspection.h ├── LoadedMethodDescIterator.cpp ├── LoadedMethodDescIterator.h ├── MethodDesc.cpp ├── MethodDesc.h ├── PdbHelper.cpp ├── PdbHelper.h ├── ReadMe.txt ├── SymbolAddressCache.cpp ├── SymbolAddressCache.h ├── Utility.cpp ├── Utility.h ├── dllmain.cpp ├── res │ ├── 004D1D9A6FA07E489B4A58736BCBD2AF#64_4_0_30319_18010 │ ├── 01A2B1CAA27F9ACA9F256DAC6C11E493#64_2_0_50727_3625 │ ├── 01CBD8FAFAFDFFB0B9EDABBF13508D96#32_2_0_50727_8662 │ ├── 0637164260A7E75EFE0A9E3F2F29893D#64_4_6_1038_0 │ ├── 0A68A041FFA1857BB5736F7B35ED757F#32_4_6_1078_0 │ ├── 0C71552D9D1304052126B397A95BC106#64_2_0_50727_8689 │ ├── 102A78CB6405B22FF019ED8465C14B1F#32_4_0_30319_17379 │ ├── 1395B4487D0FBD6F3DC0750A49A9F101#64_4_0_30319_18408 │ ├── 188D7905AE4C49101B1731F61F6EF570#32_4_5_27_0 │ ├── 1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0 │ ├── 1BC333D76444B51B01A74B7447ADBC9E#64_2_0_50727_4963 │ ├── 1C88CF5977C016A37BFAC1178DAA7822#32_2_0_50727_3634 │ ├── 215CE077258CEDD5BE4C56E9D614DB9F#32_4_0_30319_269 │ ├── 259AF6E8D5E3E28B8299FAA65473FB62#32_4_0_30319_18408 │ ├── 25CEE067AED86FF988C8D31BD7212A21#32_2_0_50727_8745 │ ├── 2FAFB5EDCDBE9CB2DA4535910C15DC9D#32_4_6_1055_0 │ ├── 34460D340829C7AAF75385AF1F626307#32_4_0_30319_17626 │ ├── 371F93342A4BBA90CDB2E93F84C025DE#64_4_0_30319_239 │ ├── 39B78898107DF43CE16D8A4567AFC216#64_2_0_50727_8662 │ ├── 3CA4ADDA47D97DDF412893F1D03EA6F6#64_2_0_50727_4971 │ ├── 42A5549F92DD52A1F75470E4A38B5A49#32_4_0_30319_225 │ ├── 44A38DA547FBFEB2F2B3D480728805DE#32_2_0_50727_4963 │ ├── 4552F8F61A7975C2359D19673483604D#32_2_0_50727_5456 │ ├── 58BC28F39D2801178246762D004D6252#64_2_0_50727_8745 │ ├── 5C937FE10EF2887B220BAE1F8795FAC6#64_4_6_1076_0 │ ├── 65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0 │ ├── 658EAE54D2F7C729B5D7768715DE071D#32_4_6_1532_0 │ ├── 6FAA411F45271A95A8445A715F129B5E#32_4_6_1076_0 │ ├── 7210D35665FB3A0353A2B7AD2ACB293C#32_4_6_1586_0 │ ├── 72FF1E427AFF95B8F062601A8C137A56#64_4_6_1055_0 │ ├── 744747615F2F8B13BF6C3DA8A04A9AF7#32_4_6_1038_0 │ ├── 7871D332FFCA5B18C77313270E343048#64_4_6_1532_0 │ ├── 7FEEE354FEB26A9612E07596BBE53AB2#64_4_6_81_0 │ ├── 836B35C5C8C5E6DE6CB0035D075755C7#64_4_0_30319_34209 │ ├── 88565B7C81145709F919AB75EAE004B6#32_2_0_50727_5710 │ ├── 8FB77F240152EA24452E6C467147E54F#32_4_6_81_0 │ ├── 951500AD4685B89423AB52665CADF653#64_2_0_50727_5448 │ ├── 96076B8FCDFF3C6DB4CCFBF7FE3A9B28#32_2_0_50727_5448 │ ├── 9B8F2F20589230F09C70BA0A9C589C9F#64_2_0_50727_5485 │ ├── A05C0003E8D7CEA359A439690554F8BB#64_2_0_50727_5456 │ ├── A15811EF4A3D20F6C7D67C4673014E18#32_4_0_30319_34209 │ ├── A4ED0EF4828C874B45896018E523CDE6#64_2_0_50727_6387 │ ├── A696FF8482F1F23C6C883116FD0C417D#64_4_0_30319_17379 │ ├── AD6B6C89CC0A53338E000CC887610D71#64_4_0_30319_17929 │ ├── BB274238CE9F8A55EE81848D033F6658#64_4_6_1078_0 │ ├── C42AE64F5DB6BC5E947B7E3E1B1E633E#32_2_0_50727_4223 │ ├── CF96AE49A34CE525D735A2666FF53CD6#64_4_0_30319_269 │ ├── D729EE48C8F0994FD556C684140C66D4#32_2_0_50727_8689 │ ├── D7FFCA48DB0B62DE58837ADE767398DF#64_4_5_27_0 │ ├── D971C845B82D877107906335EFF1824C#32_2_0_50727_8670 │ ├── E2B08878EFDF9CEDB416BFDBAA6289EC#32_4_6_106_0 │ ├── E44031537009FBCF3D780C7BD0837E38#64_4_6_106_0 │ ├── E4A1EF32903C4CC840121F4F5027FF0A#64_2_0_50727_3634 │ ├── EDFA707192B2965E4C90A9DA0F4E380F#64_4_6_1586_0 │ ├── EEC5D34CF58F5F45A3D383E913912CC9#64_2_0_50727_8670 │ ├── EF5B2B3E4C0EA504A49C34D826319221#64_4_0_30319_1 │ ├── F43F70AF86B02890FCF95ED91EA373BB#32_4_0_30319_17929 │ ├── F64FD5C7FEF7FC25CBA37974FF3584D7#32_4_0_30319_239 │ └── FF98EF5A50EA52FA115FE60B0F0A92B1#32_2_0_50727_5485 ├── resource.h ├── stdafx.cpp └── stdafx.h ├── Program_TestUnity.cs ├── README.md ├── SourceCode_VS2012.sln ├── SourceCode_VS2012.v11.suo ├── SourceCode_VS2015.sln ├── SourceCode_VS2017.sln ├── bin ├── Injection32.dll ├── Injection64.dll ├── TestUnity.exe ├── Test_x642_DotNet46_Release.exe ├── Test_x64_DotNet20_Release.exe ├── Test_x64_DotNet35_Release.exe ├── Test_x64_DotNet40_Release.exe ├── Test_x64_DotNet45_Release.exe ├── Test_x64_DotNet46_Release.exe ├── Test_x64_DotNet47_Release.exe ├── Test_x86_DotNet20_Release.exe ├── Test_x86_DotNet35_Release.exe ├── Test_x86_DotNet40_Release.exe ├── Test_x86_DotNet45_Release.exe ├── Test_x86_DotNet462_Release.exe ├── Test_x86_DotNet46_Release.exe ├── Test_x86_DotNet47_Release.exe ├── cache │ ├── 1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0.cache │ ├── 3522B2ED921F2B5BA874206D42D74554#32_4_7_2101_1.cache │ ├── 4A0278D3317382C5DA098D174C2DA9D0#32_2_0_50727_8669.cache │ ├── 65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0.cache │ ├── BA4C095F458491A1923EBBDF42790656#32_4_7_2053_0.cache │ ├── BD3311D186B22680F3AABBD2E3B375C0#64_4_7_2101_1.cache │ ├── CED2DE78BF4D1B847B36C3AB2915EA65#64_4_7_2053_0.cache │ └── D10AE7B1A734E11AB13425507EF23A5B#64_2_0_50727_8669.cache ├── x64 │ ├── SymbolCheck.dll │ ├── dbg64.dll │ ├── dbgeng.dll │ ├── srcsrv.dll │ ├── symchk.exe │ ├── symsrv.dll │ └── symsrv.yes └── x86 │ ├── SymbolCheck.dll │ ├── dbg32.dll │ ├── dbgeng.dll │ ├── srcsrv.dll │ ├── symchk.exe │ ├── symsrv.dll │ └── symsrv.yes └── description.gif /.vs/SourceCode_VS2012/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/.vs/SourceCode_VS2012/v14/.suo -------------------------------------------------------------------------------- /.vs/SourceCode_VS2015/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/.vs/SourceCode_VS2015/v14/.suo -------------------------------------------------------------------------------- /Demo/DotNet20/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet20/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet20/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet20/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet20/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet20/Test_DotNet20_VS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/Test_DotNet20_VS2010.csproj -------------------------------------------------------------------------------- /Demo/DotNet20/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20/app.config -------------------------------------------------------------------------------- /Demo/DotNet20_x64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet20_x64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet20_x64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet20_x64/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet20_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet20_x64/Test_DotNet20_x64_VS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/Test_DotNet20_x64_VS2010.csproj -------------------------------------------------------------------------------- /Demo/DotNet20_x64/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet20_x64/app.config -------------------------------------------------------------------------------- /Demo/DotNet35/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet35/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet35/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet35/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet35/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet35/Test_DotNet35_VS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Test_DotNet35_VS2010.csproj -------------------------------------------------------------------------------- /Demo/DotNet35/Test_DotNet35_VS2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/Test_DotNet35_VS2012.csproj -------------------------------------------------------------------------------- /Demo/DotNet35/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35/app.config -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Test_DotNet35_x64_VS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Test_DotNet35_x64_VS2010.csproj -------------------------------------------------------------------------------- /Demo/DotNet35_x64/Test_DotNet35_x64_VS2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/Test_DotNet35_x64_VS2012.csproj -------------------------------------------------------------------------------- /Demo/DotNet35_x64/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet35_x64/app.config -------------------------------------------------------------------------------- /Demo/DotNet40/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet40/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet40/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet40/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet40/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet40/Test_DotNet40_VS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Test_DotNet40_VS2010.csproj -------------------------------------------------------------------------------- /Demo/DotNet40/Test_DotNet40_VS2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/Test_DotNet40_VS2012.csproj -------------------------------------------------------------------------------- /Demo/DotNet40/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40/app.config -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Test_DotNet40_x64_VS2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Test_DotNet40_x64_VS2010.csproj -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Test_DotNet40_x64_VS2010.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Test_DotNet40_x64_VS2010.v11.suo -------------------------------------------------------------------------------- /Demo/DotNet40_x64/Test_DotNet40_x64_VS2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/Test_DotNet40_x64_VS2012.csproj -------------------------------------------------------------------------------- /Demo/DotNet40_x64/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet40_x64/app.config -------------------------------------------------------------------------------- /Demo/DotNet45/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet45/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet45/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet45/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet45/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet45/Test_DotNet45_VS2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/Test_DotNet45_VS2012.csproj -------------------------------------------------------------------------------- /Demo/DotNet45/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45/app.config -------------------------------------------------------------------------------- /Demo/DotNet45_x64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet45_x64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet45_x64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet45_x64/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet45_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet45_x64/Test_DotNet45_x64_VS2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/Test_DotNet45_x64_VS2012.csproj -------------------------------------------------------------------------------- /Demo/DotNet45_x64/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet45_x64/app.config -------------------------------------------------------------------------------- /Demo/DotNet46/.vs/Test_DotNet46_VS2015/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/.vs/Test_DotNet46_VS2015/v14/.suo -------------------------------------------------------------------------------- /Demo/DotNet46/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet46/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet46/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet46/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet46/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet46/Test_DotNet46_VS2015.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/Test_DotNet46_VS2015.csproj -------------------------------------------------------------------------------- /Demo/DotNet46/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46/app.config -------------------------------------------------------------------------------- /Demo/DotNet462/.vs/Test_DotNet462_VS2015/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/.vs/Test_DotNet462_VS2015/v14/.suo -------------------------------------------------------------------------------- /Demo/DotNet462/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet462/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet462/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet462/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet462/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet462/Test_DotNet462_VS2015.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Test_DotNet462_VS2015.csproj -------------------------------------------------------------------------------- /Demo/DotNet462/Test_DotNet462_VS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/Test_DotNet462_VS2015.sln -------------------------------------------------------------------------------- /Demo/DotNet462/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462/app.config -------------------------------------------------------------------------------- /Demo/DotNet462_x64/.vs/Test_DotNet462_x64_VS2015/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/.vs/Test_DotNet462_x64_VS2015/v14/.suo -------------------------------------------------------------------------------- /Demo/DotNet462_x64/.vs/Test_DotNet46_x64_VS2015/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/.vs/Test_DotNet46_x64_VS2015/v14/.suo -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Test_DotNet462_x64_VS2015.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Test_DotNet462_x64_VS2015.csproj -------------------------------------------------------------------------------- /Demo/DotNet462_x64/Test_DotNet462_x64_VS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/Test_DotNet462_x64_VS2015.sln -------------------------------------------------------------------------------- /Demo/DotNet462_x64/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet462_x64/app.config -------------------------------------------------------------------------------- /Demo/DotNet46_x64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/DotNet46_x64/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet46_x64/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/DotNet46_x64/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/DotNet46_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/DotNet46_x64/Test_DotNet46_x64_VS2015.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/Test_DotNet46_x64_VS2015.csproj -------------------------------------------------------------------------------- /Demo/DotNet46_x64/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/DotNet46_x64/app.config -------------------------------------------------------------------------------- /Demo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/Form1.Designer.cs -------------------------------------------------------------------------------- /Demo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/Form1.cs -------------------------------------------------------------------------------- /Demo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/Form1.resx -------------------------------------------------------------------------------- /Demo/General/AOP/AOP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/AOP/AOP.cs -------------------------------------------------------------------------------- /Demo/General/AOP/AOP_Extra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/AOP/AOP_Extra.cs -------------------------------------------------------------------------------- /Demo/General/AOP/AOP_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/AOP/AOP_Test.cs -------------------------------------------------------------------------------- /Demo/General/Addition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/Addition.cs -------------------------------------------------------------------------------- /Demo/General/InjectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/InjectionHelper.cs -------------------------------------------------------------------------------- /Demo/General/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/Program.cs -------------------------------------------------------------------------------- /Demo/General/RealTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/RealTokens.cs -------------------------------------------------------------------------------- /Demo/General/SDILReader/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/SDILReader/Globals.cs -------------------------------------------------------------------------------- /Demo/General/SDILReader/ILInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/SDILReader/ILInstruction.cs -------------------------------------------------------------------------------- /Demo/General/SDILReader/MethodBodyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/SDILReader/MethodBodyReader.cs -------------------------------------------------------------------------------- /Demo/General/ShortLinq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/ShortLinq.cs -------------------------------------------------------------------------------- /Demo/General/TypeTemplate/TypeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/TypeTemplate/TypeTemplate.cs -------------------------------------------------------------------------------- /Demo/General/TypeTemplate/TypeTemplate_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/General/TypeTemplate/TypeTemplate_Test.cs -------------------------------------------------------------------------------- /Demo/InjectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/InjectionHelper.cs -------------------------------------------------------------------------------- /Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Demo/Program.cs -------------------------------------------------------------------------------- /Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Info.txt -------------------------------------------------------------------------------- /Injection/ICorJitCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/ICorJitCompiler.cpp -------------------------------------------------------------------------------- /Injection/ICorJitCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/ICorJitCompiler.h -------------------------------------------------------------------------------- /Injection/Injection.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection.aps -------------------------------------------------------------------------------- /Injection/Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection.cpp -------------------------------------------------------------------------------- /Injection/Injection.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection.def -------------------------------------------------------------------------------- /Injection/Injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection.h -------------------------------------------------------------------------------- /Injection/Injection.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection.rc -------------------------------------------------------------------------------- /Injection/Injection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection.vcxproj.user -------------------------------------------------------------------------------- /Injection/Injection_VS2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2012.vcxproj -------------------------------------------------------------------------------- /Injection/Injection_VS2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2012.vcxproj.filters -------------------------------------------------------------------------------- /Injection/Injection_VS2012.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2012.vcxproj.user -------------------------------------------------------------------------------- /Injection/Injection_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2015.vcxproj -------------------------------------------------------------------------------- /Injection/Injection_VS2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2015.vcxproj.filters -------------------------------------------------------------------------------- /Injection/Injection_VS2015.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2015.vcxproj.user -------------------------------------------------------------------------------- /Injection/Injection_VS2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2017.vcxproj -------------------------------------------------------------------------------- /Injection/Injection_VS2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2017.vcxproj.filters -------------------------------------------------------------------------------- /Injection/Injection_VS2017.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Injection_VS2017.vcxproj.user -------------------------------------------------------------------------------- /Injection/Inspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Inspection.cpp -------------------------------------------------------------------------------- /Injection/Inspection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Inspection.h -------------------------------------------------------------------------------- /Injection/LoadedMethodDescIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/LoadedMethodDescIterator.cpp -------------------------------------------------------------------------------- /Injection/LoadedMethodDescIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/LoadedMethodDescIterator.h -------------------------------------------------------------------------------- /Injection/MethodDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/MethodDesc.cpp -------------------------------------------------------------------------------- /Injection/MethodDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/MethodDesc.h -------------------------------------------------------------------------------- /Injection/PdbHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/PdbHelper.cpp -------------------------------------------------------------------------------- /Injection/PdbHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/PdbHelper.h -------------------------------------------------------------------------------- /Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/ReadMe.txt -------------------------------------------------------------------------------- /Injection/SymbolAddressCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/SymbolAddressCache.cpp -------------------------------------------------------------------------------- /Injection/SymbolAddressCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/SymbolAddressCache.h -------------------------------------------------------------------------------- /Injection/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Utility.cpp -------------------------------------------------------------------------------- /Injection/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/Utility.h -------------------------------------------------------------------------------- /Injection/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/dllmain.cpp -------------------------------------------------------------------------------- /Injection/res/004D1D9A6FA07E489B4A58736BCBD2AF#64_4_0_30319_18010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/004D1D9A6FA07E489B4A58736BCBD2AF#64_4_0_30319_18010 -------------------------------------------------------------------------------- /Injection/res/01A2B1CAA27F9ACA9F256DAC6C11E493#64_2_0_50727_3625: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/01A2B1CAA27F9ACA9F256DAC6C11E493#64_2_0_50727_3625 -------------------------------------------------------------------------------- /Injection/res/01CBD8FAFAFDFFB0B9EDABBF13508D96#32_2_0_50727_8662: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/01CBD8FAFAFDFFB0B9EDABBF13508D96#32_2_0_50727_8662 -------------------------------------------------------------------------------- /Injection/res/0637164260A7E75EFE0A9E3F2F29893D#64_4_6_1038_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/0637164260A7E75EFE0A9E3F2F29893D#64_4_6_1038_0 -------------------------------------------------------------------------------- /Injection/res/0A68A041FFA1857BB5736F7B35ED757F#32_4_6_1078_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/0A68A041FFA1857BB5736F7B35ED757F#32_4_6_1078_0 -------------------------------------------------------------------------------- /Injection/res/0C71552D9D1304052126B397A95BC106#64_2_0_50727_8689: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/0C71552D9D1304052126B397A95BC106#64_2_0_50727_8689 -------------------------------------------------------------------------------- /Injection/res/102A78CB6405B22FF019ED8465C14B1F#32_4_0_30319_17379: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/102A78CB6405B22FF019ED8465C14B1F#32_4_0_30319_17379 -------------------------------------------------------------------------------- /Injection/res/1395B4487D0FBD6F3DC0750A49A9F101#64_4_0_30319_18408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/1395B4487D0FBD6F3DC0750A49A9F101#64_4_0_30319_18408 -------------------------------------------------------------------------------- /Injection/res/188D7905AE4C49101B1731F61F6EF570#32_4_5_27_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/188D7905AE4C49101B1731F61F6EF570#32_4_5_27_0 -------------------------------------------------------------------------------- /Injection/res/1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0 -------------------------------------------------------------------------------- /Injection/res/1BC333D76444B51B01A74B7447ADBC9E#64_2_0_50727_4963: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/1BC333D76444B51B01A74B7447ADBC9E#64_2_0_50727_4963 -------------------------------------------------------------------------------- /Injection/res/1C88CF5977C016A37BFAC1178DAA7822#32_2_0_50727_3634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/1C88CF5977C016A37BFAC1178DAA7822#32_2_0_50727_3634 -------------------------------------------------------------------------------- /Injection/res/215CE077258CEDD5BE4C56E9D614DB9F#32_4_0_30319_269: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/215CE077258CEDD5BE4C56E9D614DB9F#32_4_0_30319_269 -------------------------------------------------------------------------------- /Injection/res/259AF6E8D5E3E28B8299FAA65473FB62#32_4_0_30319_18408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/259AF6E8D5E3E28B8299FAA65473FB62#32_4_0_30319_18408 -------------------------------------------------------------------------------- /Injection/res/25CEE067AED86FF988C8D31BD7212A21#32_2_0_50727_8745: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/25CEE067AED86FF988C8D31BD7212A21#32_2_0_50727_8745 -------------------------------------------------------------------------------- /Injection/res/2FAFB5EDCDBE9CB2DA4535910C15DC9D#32_4_6_1055_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/2FAFB5EDCDBE9CB2DA4535910C15DC9D#32_4_6_1055_0 -------------------------------------------------------------------------------- /Injection/res/34460D340829C7AAF75385AF1F626307#32_4_0_30319_17626: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/34460D340829C7AAF75385AF1F626307#32_4_0_30319_17626 -------------------------------------------------------------------------------- /Injection/res/371F93342A4BBA90CDB2E93F84C025DE#64_4_0_30319_239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/371F93342A4BBA90CDB2E93F84C025DE#64_4_0_30319_239 -------------------------------------------------------------------------------- /Injection/res/39B78898107DF43CE16D8A4567AFC216#64_2_0_50727_8662: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/39B78898107DF43CE16D8A4567AFC216#64_2_0_50727_8662 -------------------------------------------------------------------------------- /Injection/res/3CA4ADDA47D97DDF412893F1D03EA6F6#64_2_0_50727_4971: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/3CA4ADDA47D97DDF412893F1D03EA6F6#64_2_0_50727_4971 -------------------------------------------------------------------------------- /Injection/res/42A5549F92DD52A1F75470E4A38B5A49#32_4_0_30319_225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/42A5549F92DD52A1F75470E4A38B5A49#32_4_0_30319_225 -------------------------------------------------------------------------------- /Injection/res/44A38DA547FBFEB2F2B3D480728805DE#32_2_0_50727_4963: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/44A38DA547FBFEB2F2B3D480728805DE#32_2_0_50727_4963 -------------------------------------------------------------------------------- /Injection/res/4552F8F61A7975C2359D19673483604D#32_2_0_50727_5456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/4552F8F61A7975C2359D19673483604D#32_2_0_50727_5456 -------------------------------------------------------------------------------- /Injection/res/58BC28F39D2801178246762D004D6252#64_2_0_50727_8745: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/58BC28F39D2801178246762D004D6252#64_2_0_50727_8745 -------------------------------------------------------------------------------- /Injection/res/5C937FE10EF2887B220BAE1F8795FAC6#64_4_6_1076_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/5C937FE10EF2887B220BAE1F8795FAC6#64_4_6_1076_0 -------------------------------------------------------------------------------- /Injection/res/65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0 -------------------------------------------------------------------------------- /Injection/res/658EAE54D2F7C729B5D7768715DE071D#32_4_6_1532_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/658EAE54D2F7C729B5D7768715DE071D#32_4_6_1532_0 -------------------------------------------------------------------------------- /Injection/res/6FAA411F45271A95A8445A715F129B5E#32_4_6_1076_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/6FAA411F45271A95A8445A715F129B5E#32_4_6_1076_0 -------------------------------------------------------------------------------- /Injection/res/7210D35665FB3A0353A2B7AD2ACB293C#32_4_6_1586_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/7210D35665FB3A0353A2B7AD2ACB293C#32_4_6_1586_0 -------------------------------------------------------------------------------- /Injection/res/72FF1E427AFF95B8F062601A8C137A56#64_4_6_1055_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/72FF1E427AFF95B8F062601A8C137A56#64_4_6_1055_0 -------------------------------------------------------------------------------- /Injection/res/744747615F2F8B13BF6C3DA8A04A9AF7#32_4_6_1038_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/744747615F2F8B13BF6C3DA8A04A9AF7#32_4_6_1038_0 -------------------------------------------------------------------------------- /Injection/res/7871D332FFCA5B18C77313270E343048#64_4_6_1532_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/7871D332FFCA5B18C77313270E343048#64_4_6_1532_0 -------------------------------------------------------------------------------- /Injection/res/7FEEE354FEB26A9612E07596BBE53AB2#64_4_6_81_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/7FEEE354FEB26A9612E07596BBE53AB2#64_4_6_81_0 -------------------------------------------------------------------------------- /Injection/res/836B35C5C8C5E6DE6CB0035D075755C7#64_4_0_30319_34209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/836B35C5C8C5E6DE6CB0035D075755C7#64_4_0_30319_34209 -------------------------------------------------------------------------------- /Injection/res/88565B7C81145709F919AB75EAE004B6#32_2_0_50727_5710: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/88565B7C81145709F919AB75EAE004B6#32_2_0_50727_5710 -------------------------------------------------------------------------------- /Injection/res/8FB77F240152EA24452E6C467147E54F#32_4_6_81_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/8FB77F240152EA24452E6C467147E54F#32_4_6_81_0 -------------------------------------------------------------------------------- /Injection/res/951500AD4685B89423AB52665CADF653#64_2_0_50727_5448: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/951500AD4685B89423AB52665CADF653#64_2_0_50727_5448 -------------------------------------------------------------------------------- /Injection/res/96076B8FCDFF3C6DB4CCFBF7FE3A9B28#32_2_0_50727_5448: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/96076B8FCDFF3C6DB4CCFBF7FE3A9B28#32_2_0_50727_5448 -------------------------------------------------------------------------------- /Injection/res/9B8F2F20589230F09C70BA0A9C589C9F#64_2_0_50727_5485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/9B8F2F20589230F09C70BA0A9C589C9F#64_2_0_50727_5485 -------------------------------------------------------------------------------- /Injection/res/A05C0003E8D7CEA359A439690554F8BB#64_2_0_50727_5456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/A05C0003E8D7CEA359A439690554F8BB#64_2_0_50727_5456 -------------------------------------------------------------------------------- /Injection/res/A15811EF4A3D20F6C7D67C4673014E18#32_4_0_30319_34209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/A15811EF4A3D20F6C7D67C4673014E18#32_4_0_30319_34209 -------------------------------------------------------------------------------- /Injection/res/A4ED0EF4828C874B45896018E523CDE6#64_2_0_50727_6387: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/A4ED0EF4828C874B45896018E523CDE6#64_2_0_50727_6387 -------------------------------------------------------------------------------- /Injection/res/A696FF8482F1F23C6C883116FD0C417D#64_4_0_30319_17379: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/A696FF8482F1F23C6C883116FD0C417D#64_4_0_30319_17379 -------------------------------------------------------------------------------- /Injection/res/AD6B6C89CC0A53338E000CC887610D71#64_4_0_30319_17929: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/AD6B6C89CC0A53338E000CC887610D71#64_4_0_30319_17929 -------------------------------------------------------------------------------- /Injection/res/BB274238CE9F8A55EE81848D033F6658#64_4_6_1078_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/BB274238CE9F8A55EE81848D033F6658#64_4_6_1078_0 -------------------------------------------------------------------------------- /Injection/res/C42AE64F5DB6BC5E947B7E3E1B1E633E#32_2_0_50727_4223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/C42AE64F5DB6BC5E947B7E3E1B1E633E#32_2_0_50727_4223 -------------------------------------------------------------------------------- /Injection/res/CF96AE49A34CE525D735A2666FF53CD6#64_4_0_30319_269: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/CF96AE49A34CE525D735A2666FF53CD6#64_4_0_30319_269 -------------------------------------------------------------------------------- /Injection/res/D729EE48C8F0994FD556C684140C66D4#32_2_0_50727_8689: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/D729EE48C8F0994FD556C684140C66D4#32_2_0_50727_8689 -------------------------------------------------------------------------------- /Injection/res/D7FFCA48DB0B62DE58837ADE767398DF#64_4_5_27_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/D7FFCA48DB0B62DE58837ADE767398DF#64_4_5_27_0 -------------------------------------------------------------------------------- /Injection/res/D971C845B82D877107906335EFF1824C#32_2_0_50727_8670: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/D971C845B82D877107906335EFF1824C#32_2_0_50727_8670 -------------------------------------------------------------------------------- /Injection/res/E2B08878EFDF9CEDB416BFDBAA6289EC#32_4_6_106_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/E2B08878EFDF9CEDB416BFDBAA6289EC#32_4_6_106_0 -------------------------------------------------------------------------------- /Injection/res/E44031537009FBCF3D780C7BD0837E38#64_4_6_106_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/E44031537009FBCF3D780C7BD0837E38#64_4_6_106_0 -------------------------------------------------------------------------------- /Injection/res/E4A1EF32903C4CC840121F4F5027FF0A#64_2_0_50727_3634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/E4A1EF32903C4CC840121F4F5027FF0A#64_2_0_50727_3634 -------------------------------------------------------------------------------- /Injection/res/EDFA707192B2965E4C90A9DA0F4E380F#64_4_6_1586_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/EDFA707192B2965E4C90A9DA0F4E380F#64_4_6_1586_0 -------------------------------------------------------------------------------- /Injection/res/EEC5D34CF58F5F45A3D383E913912CC9#64_2_0_50727_8670: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/EEC5D34CF58F5F45A3D383E913912CC9#64_2_0_50727_8670 -------------------------------------------------------------------------------- /Injection/res/EF5B2B3E4C0EA504A49C34D826319221#64_4_0_30319_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/EF5B2B3E4C0EA504A49C34D826319221#64_4_0_30319_1 -------------------------------------------------------------------------------- /Injection/res/F43F70AF86B02890FCF95ED91EA373BB#32_4_0_30319_17929: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/F43F70AF86B02890FCF95ED91EA373BB#32_4_0_30319_17929 -------------------------------------------------------------------------------- /Injection/res/F64FD5C7FEF7FC25CBA37974FF3584D7#32_4_0_30319_239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/F64FD5C7FEF7FC25CBA37974FF3584D7#32_4_0_30319_239 -------------------------------------------------------------------------------- /Injection/res/FF98EF5A50EA52FA115FE60B0F0A92B1#32_2_0_50727_5485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/res/FF98EF5A50EA52FA115FE60B0F0A92B1#32_2_0_50727_5485 -------------------------------------------------------------------------------- /Injection/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/resource.h -------------------------------------------------------------------------------- /Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/stdafx.cpp -------------------------------------------------------------------------------- /Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection/stdafx.h -------------------------------------------------------------------------------- /Injection_setRealJit/ICorJitCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/ICorJitCompiler.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/ICorJitCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/ICorJitCompiler.h -------------------------------------------------------------------------------- /Injection_setRealJit/Injection.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection.aps -------------------------------------------------------------------------------- /Injection_setRealJit/Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/Injection.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection.def -------------------------------------------------------------------------------- /Injection_setRealJit/Injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection.h -------------------------------------------------------------------------------- /Injection_setRealJit/Injection.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection.rc -------------------------------------------------------------------------------- /Injection_setRealJit/Injection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection.vcxproj.user -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2012.vcxproj -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2012.vcxproj.filters -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2012.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2012.vcxproj.user -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2015.vcxproj -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2015.vcxproj.filters -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2015.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2015.vcxproj.user -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2017.vcxproj -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2017.vcxproj.filters -------------------------------------------------------------------------------- /Injection_setRealJit/Injection_setRealJit_VS2017.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Injection_setRealJit_VS2017.vcxproj.user -------------------------------------------------------------------------------- /Injection_setRealJit/Inspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Inspection.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/Inspection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Inspection.h -------------------------------------------------------------------------------- /Injection_setRealJit/LoadedMethodDescIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/LoadedMethodDescIterator.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/LoadedMethodDescIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/LoadedMethodDescIterator.h -------------------------------------------------------------------------------- /Injection_setRealJit/MethodDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/MethodDesc.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/MethodDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/MethodDesc.h -------------------------------------------------------------------------------- /Injection_setRealJit/PdbHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/PdbHelper.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/PdbHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/PdbHelper.h -------------------------------------------------------------------------------- /Injection_setRealJit/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/ReadMe.txt -------------------------------------------------------------------------------- /Injection_setRealJit/SymbolAddressCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/SymbolAddressCache.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/SymbolAddressCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/SymbolAddressCache.h -------------------------------------------------------------------------------- /Injection_setRealJit/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Utility.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/Utility.h -------------------------------------------------------------------------------- /Injection_setRealJit/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/dllmain.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/res/004D1D9A6FA07E489B4A58736BCBD2AF#64_4_0_30319_18010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/004D1D9A6FA07E489B4A58736BCBD2AF#64_4_0_30319_18010 -------------------------------------------------------------------------------- /Injection_setRealJit/res/01A2B1CAA27F9ACA9F256DAC6C11E493#64_2_0_50727_3625: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/01A2B1CAA27F9ACA9F256DAC6C11E493#64_2_0_50727_3625 -------------------------------------------------------------------------------- /Injection_setRealJit/res/01CBD8FAFAFDFFB0B9EDABBF13508D96#32_2_0_50727_8662: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/01CBD8FAFAFDFFB0B9EDABBF13508D96#32_2_0_50727_8662 -------------------------------------------------------------------------------- /Injection_setRealJit/res/0637164260A7E75EFE0A9E3F2F29893D#64_4_6_1038_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/0637164260A7E75EFE0A9E3F2F29893D#64_4_6_1038_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/0A68A041FFA1857BB5736F7B35ED757F#32_4_6_1078_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/0A68A041FFA1857BB5736F7B35ED757F#32_4_6_1078_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/0C71552D9D1304052126B397A95BC106#64_2_0_50727_8689: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/0C71552D9D1304052126B397A95BC106#64_2_0_50727_8689 -------------------------------------------------------------------------------- /Injection_setRealJit/res/102A78CB6405B22FF019ED8465C14B1F#32_4_0_30319_17379: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/102A78CB6405B22FF019ED8465C14B1F#32_4_0_30319_17379 -------------------------------------------------------------------------------- /Injection_setRealJit/res/1395B4487D0FBD6F3DC0750A49A9F101#64_4_0_30319_18408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/1395B4487D0FBD6F3DC0750A49A9F101#64_4_0_30319_18408 -------------------------------------------------------------------------------- /Injection_setRealJit/res/188D7905AE4C49101B1731F61F6EF570#32_4_5_27_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/188D7905AE4C49101B1731F61F6EF570#32_4_5_27_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/1BC333D76444B51B01A74B7447ADBC9E#64_2_0_50727_4963: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/1BC333D76444B51B01A74B7447ADBC9E#64_2_0_50727_4963 -------------------------------------------------------------------------------- /Injection_setRealJit/res/1C88CF5977C016A37BFAC1178DAA7822#32_2_0_50727_3634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/1C88CF5977C016A37BFAC1178DAA7822#32_2_0_50727_3634 -------------------------------------------------------------------------------- /Injection_setRealJit/res/215CE077258CEDD5BE4C56E9D614DB9F#32_4_0_30319_269: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/215CE077258CEDD5BE4C56E9D614DB9F#32_4_0_30319_269 -------------------------------------------------------------------------------- /Injection_setRealJit/res/259AF6E8D5E3E28B8299FAA65473FB62#32_4_0_30319_18408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/259AF6E8D5E3E28B8299FAA65473FB62#32_4_0_30319_18408 -------------------------------------------------------------------------------- /Injection_setRealJit/res/25CEE067AED86FF988C8D31BD7212A21#32_2_0_50727_8745: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/25CEE067AED86FF988C8D31BD7212A21#32_2_0_50727_8745 -------------------------------------------------------------------------------- /Injection_setRealJit/res/2FAFB5EDCDBE9CB2DA4535910C15DC9D#32_4_6_1055_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/2FAFB5EDCDBE9CB2DA4535910C15DC9D#32_4_6_1055_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/34460D340829C7AAF75385AF1F626307#32_4_0_30319_17626: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/34460D340829C7AAF75385AF1F626307#32_4_0_30319_17626 -------------------------------------------------------------------------------- /Injection_setRealJit/res/371F93342A4BBA90CDB2E93F84C025DE#64_4_0_30319_239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/371F93342A4BBA90CDB2E93F84C025DE#64_4_0_30319_239 -------------------------------------------------------------------------------- /Injection_setRealJit/res/39B78898107DF43CE16D8A4567AFC216#64_2_0_50727_8662: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/39B78898107DF43CE16D8A4567AFC216#64_2_0_50727_8662 -------------------------------------------------------------------------------- /Injection_setRealJit/res/3CA4ADDA47D97DDF412893F1D03EA6F6#64_2_0_50727_4971: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/3CA4ADDA47D97DDF412893F1D03EA6F6#64_2_0_50727_4971 -------------------------------------------------------------------------------- /Injection_setRealJit/res/42A5549F92DD52A1F75470E4A38B5A49#32_4_0_30319_225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/42A5549F92DD52A1F75470E4A38B5A49#32_4_0_30319_225 -------------------------------------------------------------------------------- /Injection_setRealJit/res/44A38DA547FBFEB2F2B3D480728805DE#32_2_0_50727_4963: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/44A38DA547FBFEB2F2B3D480728805DE#32_2_0_50727_4963 -------------------------------------------------------------------------------- /Injection_setRealJit/res/4552F8F61A7975C2359D19673483604D#32_2_0_50727_5456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/4552F8F61A7975C2359D19673483604D#32_2_0_50727_5456 -------------------------------------------------------------------------------- /Injection_setRealJit/res/58BC28F39D2801178246762D004D6252#64_2_0_50727_8745: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/58BC28F39D2801178246762D004D6252#64_2_0_50727_8745 -------------------------------------------------------------------------------- /Injection_setRealJit/res/5C937FE10EF2887B220BAE1F8795FAC6#64_4_6_1076_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/5C937FE10EF2887B220BAE1F8795FAC6#64_4_6_1076_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/658EAE54D2F7C729B5D7768715DE071D#32_4_6_1532_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/658EAE54D2F7C729B5D7768715DE071D#32_4_6_1532_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/6FAA411F45271A95A8445A715F129B5E#32_4_6_1076_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/6FAA411F45271A95A8445A715F129B5E#32_4_6_1076_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/7210D35665FB3A0353A2B7AD2ACB293C#32_4_6_1586_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/7210D35665FB3A0353A2B7AD2ACB293C#32_4_6_1586_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/72FF1E427AFF95B8F062601A8C137A56#64_4_6_1055_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/72FF1E427AFF95B8F062601A8C137A56#64_4_6_1055_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/744747615F2F8B13BF6C3DA8A04A9AF7#32_4_6_1038_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/744747615F2F8B13BF6C3DA8A04A9AF7#32_4_6_1038_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/7871D332FFCA5B18C77313270E343048#64_4_6_1532_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/7871D332FFCA5B18C77313270E343048#64_4_6_1532_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/7FEEE354FEB26A9612E07596BBE53AB2#64_4_6_81_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/7FEEE354FEB26A9612E07596BBE53AB2#64_4_6_81_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/836B35C5C8C5E6DE6CB0035D075755C7#64_4_0_30319_34209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/836B35C5C8C5E6DE6CB0035D075755C7#64_4_0_30319_34209 -------------------------------------------------------------------------------- /Injection_setRealJit/res/88565B7C81145709F919AB75EAE004B6#32_2_0_50727_5710: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/88565B7C81145709F919AB75EAE004B6#32_2_0_50727_5710 -------------------------------------------------------------------------------- /Injection_setRealJit/res/8FB77F240152EA24452E6C467147E54F#32_4_6_81_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/8FB77F240152EA24452E6C467147E54F#32_4_6_81_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/951500AD4685B89423AB52665CADF653#64_2_0_50727_5448: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/951500AD4685B89423AB52665CADF653#64_2_0_50727_5448 -------------------------------------------------------------------------------- /Injection_setRealJit/res/96076B8FCDFF3C6DB4CCFBF7FE3A9B28#32_2_0_50727_5448: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/96076B8FCDFF3C6DB4CCFBF7FE3A9B28#32_2_0_50727_5448 -------------------------------------------------------------------------------- /Injection_setRealJit/res/9B8F2F20589230F09C70BA0A9C589C9F#64_2_0_50727_5485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/9B8F2F20589230F09C70BA0A9C589C9F#64_2_0_50727_5485 -------------------------------------------------------------------------------- /Injection_setRealJit/res/A05C0003E8D7CEA359A439690554F8BB#64_2_0_50727_5456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/A05C0003E8D7CEA359A439690554F8BB#64_2_0_50727_5456 -------------------------------------------------------------------------------- /Injection_setRealJit/res/A15811EF4A3D20F6C7D67C4673014E18#32_4_0_30319_34209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/A15811EF4A3D20F6C7D67C4673014E18#32_4_0_30319_34209 -------------------------------------------------------------------------------- /Injection_setRealJit/res/A4ED0EF4828C874B45896018E523CDE6#64_2_0_50727_6387: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/A4ED0EF4828C874B45896018E523CDE6#64_2_0_50727_6387 -------------------------------------------------------------------------------- /Injection_setRealJit/res/A696FF8482F1F23C6C883116FD0C417D#64_4_0_30319_17379: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/A696FF8482F1F23C6C883116FD0C417D#64_4_0_30319_17379 -------------------------------------------------------------------------------- /Injection_setRealJit/res/AD6B6C89CC0A53338E000CC887610D71#64_4_0_30319_17929: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/AD6B6C89CC0A53338E000CC887610D71#64_4_0_30319_17929 -------------------------------------------------------------------------------- /Injection_setRealJit/res/BB274238CE9F8A55EE81848D033F6658#64_4_6_1078_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/BB274238CE9F8A55EE81848D033F6658#64_4_6_1078_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/C42AE64F5DB6BC5E947B7E3E1B1E633E#32_2_0_50727_4223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/C42AE64F5DB6BC5E947B7E3E1B1E633E#32_2_0_50727_4223 -------------------------------------------------------------------------------- /Injection_setRealJit/res/CF96AE49A34CE525D735A2666FF53CD6#64_4_0_30319_269: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/CF96AE49A34CE525D735A2666FF53CD6#64_4_0_30319_269 -------------------------------------------------------------------------------- /Injection_setRealJit/res/D729EE48C8F0994FD556C684140C66D4#32_2_0_50727_8689: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/D729EE48C8F0994FD556C684140C66D4#32_2_0_50727_8689 -------------------------------------------------------------------------------- /Injection_setRealJit/res/D7FFCA48DB0B62DE58837ADE767398DF#64_4_5_27_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/D7FFCA48DB0B62DE58837ADE767398DF#64_4_5_27_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/D971C845B82D877107906335EFF1824C#32_2_0_50727_8670: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/D971C845B82D877107906335EFF1824C#32_2_0_50727_8670 -------------------------------------------------------------------------------- /Injection_setRealJit/res/E2B08878EFDF9CEDB416BFDBAA6289EC#32_4_6_106_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/E2B08878EFDF9CEDB416BFDBAA6289EC#32_4_6_106_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/E44031537009FBCF3D780C7BD0837E38#64_4_6_106_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/E44031537009FBCF3D780C7BD0837E38#64_4_6_106_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/E4A1EF32903C4CC840121F4F5027FF0A#64_2_0_50727_3634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/E4A1EF32903C4CC840121F4F5027FF0A#64_2_0_50727_3634 -------------------------------------------------------------------------------- /Injection_setRealJit/res/EDFA707192B2965E4C90A9DA0F4E380F#64_4_6_1586_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/EDFA707192B2965E4C90A9DA0F4E380F#64_4_6_1586_0 -------------------------------------------------------------------------------- /Injection_setRealJit/res/EEC5D34CF58F5F45A3D383E913912CC9#64_2_0_50727_8670: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/EEC5D34CF58F5F45A3D383E913912CC9#64_2_0_50727_8670 -------------------------------------------------------------------------------- /Injection_setRealJit/res/EF5B2B3E4C0EA504A49C34D826319221#64_4_0_30319_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/EF5B2B3E4C0EA504A49C34D826319221#64_4_0_30319_1 -------------------------------------------------------------------------------- /Injection_setRealJit/res/F43F70AF86B02890FCF95ED91EA373BB#32_4_0_30319_17929: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/F43F70AF86B02890FCF95ED91EA373BB#32_4_0_30319_17929 -------------------------------------------------------------------------------- /Injection_setRealJit/res/F64FD5C7FEF7FC25CBA37974FF3584D7#32_4_0_30319_239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/F64FD5C7FEF7FC25CBA37974FF3584D7#32_4_0_30319_239 -------------------------------------------------------------------------------- /Injection_setRealJit/res/FF98EF5A50EA52FA115FE60B0F0A92B1#32_2_0_50727_5485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/res/FF98EF5A50EA52FA115FE60B0F0A92B1#32_2_0_50727_5485 -------------------------------------------------------------------------------- /Injection_setRealJit/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/resource.h -------------------------------------------------------------------------------- /Injection_setRealJit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/stdafx.cpp -------------------------------------------------------------------------------- /Injection_setRealJit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Injection_setRealJit/stdafx.h -------------------------------------------------------------------------------- /Program_TestUnity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/Program_TestUnity.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/README.md -------------------------------------------------------------------------------- /SourceCode_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/SourceCode_VS2012.sln -------------------------------------------------------------------------------- /SourceCode_VS2012.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/SourceCode_VS2012.v11.suo -------------------------------------------------------------------------------- /SourceCode_VS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/SourceCode_VS2015.sln -------------------------------------------------------------------------------- /SourceCode_VS2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/SourceCode_VS2017.sln -------------------------------------------------------------------------------- /bin/Injection32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Injection32.dll -------------------------------------------------------------------------------- /bin/Injection64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Injection64.dll -------------------------------------------------------------------------------- /bin/TestUnity.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/TestUnity.exe -------------------------------------------------------------------------------- /bin/Test_x642_DotNet46_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x642_DotNet46_Release.exe -------------------------------------------------------------------------------- /bin/Test_x64_DotNet20_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x64_DotNet20_Release.exe -------------------------------------------------------------------------------- /bin/Test_x64_DotNet35_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x64_DotNet35_Release.exe -------------------------------------------------------------------------------- /bin/Test_x64_DotNet40_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x64_DotNet40_Release.exe -------------------------------------------------------------------------------- /bin/Test_x64_DotNet45_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x64_DotNet45_Release.exe -------------------------------------------------------------------------------- /bin/Test_x64_DotNet46_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x64_DotNet46_Release.exe -------------------------------------------------------------------------------- /bin/Test_x64_DotNet47_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x64_DotNet47_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet20_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet20_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet35_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet35_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet40_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet40_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet45_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet45_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet462_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet462_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet46_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet46_Release.exe -------------------------------------------------------------------------------- /bin/Test_x86_DotNet47_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/Test_x86_DotNet47_Release.exe -------------------------------------------------------------------------------- /bin/cache/1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/1B4243355F21CAB9EEFE09DBAFE78677#32_4_6_1590_0.cache -------------------------------------------------------------------------------- /bin/cache/3522B2ED921F2B5BA874206D42D74554#32_4_7_2101_1.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/3522B2ED921F2B5BA874206D42D74554#32_4_7_2101_1.cache -------------------------------------------------------------------------------- /bin/cache/4A0278D3317382C5DA098D174C2DA9D0#32_2_0_50727_8669.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/4A0278D3317382C5DA098D174C2DA9D0#32_2_0_50727_8669.cache -------------------------------------------------------------------------------- /bin/cache/65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/65473F09BCF3DB3A67227311D1C7B691#64_4_6_1590_0.cache -------------------------------------------------------------------------------- /bin/cache/BA4C095F458491A1923EBBDF42790656#32_4_7_2053_0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/BA4C095F458491A1923EBBDF42790656#32_4_7_2053_0.cache -------------------------------------------------------------------------------- /bin/cache/BD3311D186B22680F3AABBD2E3B375C0#64_4_7_2101_1.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/BD3311D186B22680F3AABBD2E3B375C0#64_4_7_2101_1.cache -------------------------------------------------------------------------------- /bin/cache/CED2DE78BF4D1B847B36C3AB2915EA65#64_4_7_2053_0.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/CED2DE78BF4D1B847B36C3AB2915EA65#64_4_7_2053_0.cache -------------------------------------------------------------------------------- /bin/cache/D10AE7B1A734E11AB13425507EF23A5B#64_2_0_50727_8669.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/cache/D10AE7B1A734E11AB13425507EF23A5B#64_2_0_50727_8669.cache -------------------------------------------------------------------------------- /bin/x64/SymbolCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x64/SymbolCheck.dll -------------------------------------------------------------------------------- /bin/x64/dbg64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x64/dbg64.dll -------------------------------------------------------------------------------- /bin/x64/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x64/dbgeng.dll -------------------------------------------------------------------------------- /bin/x64/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x64/srcsrv.dll -------------------------------------------------------------------------------- /bin/x64/symchk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x64/symchk.exe -------------------------------------------------------------------------------- /bin/x64/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x64/symsrv.dll -------------------------------------------------------------------------------- /bin/x64/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/x86/SymbolCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x86/SymbolCheck.dll -------------------------------------------------------------------------------- /bin/x86/dbg32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x86/dbg32.dll -------------------------------------------------------------------------------- /bin/x86/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x86/dbgeng.dll -------------------------------------------------------------------------------- /bin/x86/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x86/srcsrv.dll -------------------------------------------------------------------------------- /bin/x86/symchk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x86/symchk.exe -------------------------------------------------------------------------------- /bin/x86/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/bin/x86/symsrv.dll -------------------------------------------------------------------------------- /bin/x86/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /description.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Martmath/ILInjectionandSample/HEAD/description.gif --------------------------------------------------------------------------------