├── .gitignore ├── Headers ├── DotNetNative.h ├── FileIo.hpp ├── Helpers.h ├── Interface.hpp ├── Ioc.hpp ├── MemDump.hpp ├── Memory.hpp ├── PEB.h ├── PeFile.hpp ├── Privileges.h ├── Processes.hpp ├── Resources.h ├── Scanner.hpp ├── Signing.h ├── Statistics.hpp ├── StdAfx.h └── Typedefs.h ├── LICENSE ├── Moneta.sln ├── Moneta.vcxproj ├── Moneta.vcxproj.filters ├── Moneta.vcxproj.user ├── README.txt ├── Resources ├── Moneta.aps ├── Moneta.ico ├── Moneta.rc └── Usage.txt ├── Source ├── Console.cpp ├── DotNetNative.cpp ├── FileIo.cpp ├── Interface.cpp ├── Ioc.cpp ├── MemDump.cpp ├── PeFile.cpp ├── Privilege.cpp ├── Process.cpp ├── Regions.cpp ├── Signing.cpp ├── Statistics.cpp ├── Subregions.cpp └── Thread.cpp ├── Tests ├── DotNetFrameworkDll │ ├── .vs │ │ └── DotNetFrameworkDll │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── Class1.cs │ ├── DotNetFrameworkDll.csproj │ ├── DotNetFrameworkDll.sln │ ├── bin │ │ ├── Release │ │ │ └── netstandard2.0 │ │ │ │ ├── DotNetFrameworkDll.deps.json │ │ │ │ └── DotNetFrameworkDll.dll │ │ └── x64 │ │ │ └── Release │ │ │ └── netstandard2.0 │ │ │ ├── DotNetFrameworkDll.deps.json │ │ │ └── DotNetFrameworkDll.dll │ └── obj │ │ ├── Debug │ │ └── netstandard2.0 │ │ │ └── DotNetFrameworkDll.AssemblyInfo.cs │ │ ├── DotNetFrameworkDll.csproj.nuget.dgspec.json │ │ ├── DotNetFrameworkDll.csproj.nuget.g.props │ │ ├── DotNetFrameworkDll.csproj.nuget.g.targets │ │ ├── Release │ │ └── netstandard2.0 │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ │ ├── DotNetFrameworkDll.AssemblyInfo.cs │ │ │ └── DotNetFrameworkDll.dll │ │ ├── project.assets.json │ │ └── x64 │ │ └── Release │ │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── DotNetFrameworkDll.AssemblyInfo.cs │ │ └── DotNetFrameworkDll.dll └── DotNetFrameworkExe │ ├── .vs │ └── DotNetFrameworkExe │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ └── storage.ide │ ├── App.config │ ├── DotNetFrameworkExe.csproj │ ├── DotNetFrameworkExe.sln │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── bin │ ├── Release │ │ └── DotNetFrameworkExe.exe.config │ └── x64 │ │ └── Release │ │ └── DotNetFrameworkExe.exe.config │ └── obj │ ├── Release │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── DotNetFrameworkExe.Form1.resources │ ├── DotNetFrameworkExe.Properties.Resources.resources │ ├── DotNetFrameworkExe.exe │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ └── x64 │ └── Release │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── DotNetFrameworkExe.Form1.resources │ ├── DotNetFrameworkExe.Properties.Resources.resources │ ├── DotNetFrameworkExe.exe │ └── TempPE │ └── Properties.Resources.Designer.cs.dll └── x64 └── Release ├── Moneta.res └── Moneta.vcxproj.FileListAbsolute.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/.gitignore -------------------------------------------------------------------------------- /Headers/DotNetNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/DotNetNative.h -------------------------------------------------------------------------------- /Headers/FileIo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/FileIo.hpp -------------------------------------------------------------------------------- /Headers/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Helpers.h -------------------------------------------------------------------------------- /Headers/Interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Interface.hpp -------------------------------------------------------------------------------- /Headers/Ioc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Ioc.hpp -------------------------------------------------------------------------------- /Headers/MemDump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/MemDump.hpp -------------------------------------------------------------------------------- /Headers/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Memory.hpp -------------------------------------------------------------------------------- /Headers/PEB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/PEB.h -------------------------------------------------------------------------------- /Headers/PeFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/PeFile.hpp -------------------------------------------------------------------------------- /Headers/Privileges.h: -------------------------------------------------------------------------------- 1 | bool GrantSelfSeDebug(); -------------------------------------------------------------------------------- /Headers/Processes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Processes.hpp -------------------------------------------------------------------------------- /Headers/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Resources.h -------------------------------------------------------------------------------- /Headers/Scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Scanner.hpp -------------------------------------------------------------------------------- /Headers/Signing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Signing.h -------------------------------------------------------------------------------- /Headers/Statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Statistics.hpp -------------------------------------------------------------------------------- /Headers/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/StdAfx.h -------------------------------------------------------------------------------- /Headers/Typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Headers/Typedefs.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/LICENSE -------------------------------------------------------------------------------- /Moneta.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Moneta.sln -------------------------------------------------------------------------------- /Moneta.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Moneta.vcxproj -------------------------------------------------------------------------------- /Moneta.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Moneta.vcxproj.filters -------------------------------------------------------------------------------- /Moneta.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Moneta.vcxproj.user -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/README.txt -------------------------------------------------------------------------------- /Resources/Moneta.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Resources/Moneta.aps -------------------------------------------------------------------------------- /Resources/Moneta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Resources/Moneta.ico -------------------------------------------------------------------------------- /Resources/Moneta.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Resources/Moneta.rc -------------------------------------------------------------------------------- /Resources/Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Resources/Usage.txt -------------------------------------------------------------------------------- /Source/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Console.cpp -------------------------------------------------------------------------------- /Source/DotNetNative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/DotNetNative.cpp -------------------------------------------------------------------------------- /Source/FileIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/FileIo.cpp -------------------------------------------------------------------------------- /Source/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Interface.cpp -------------------------------------------------------------------------------- /Source/Ioc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Ioc.cpp -------------------------------------------------------------------------------- /Source/MemDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/MemDump.cpp -------------------------------------------------------------------------------- /Source/PeFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/PeFile.cpp -------------------------------------------------------------------------------- /Source/Privilege.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Privilege.cpp -------------------------------------------------------------------------------- /Source/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Process.cpp -------------------------------------------------------------------------------- /Source/Regions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Regions.cpp -------------------------------------------------------------------------------- /Source/Signing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Signing.cpp -------------------------------------------------------------------------------- /Source/Statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Statistics.cpp -------------------------------------------------------------------------------- /Source/Subregions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Subregions.cpp -------------------------------------------------------------------------------- /Source/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Source/Thread.cpp -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/.vs/DotNetFrameworkDll/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/.vs/DotNetFrameworkDll/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/.vs/DotNetFrameworkDll/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/.vs/DotNetFrameworkDll/v16/.suo -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/Class1.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/DotNetFrameworkDll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/DotNetFrameworkDll.csproj -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/DotNetFrameworkDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/DotNetFrameworkDll.sln -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/bin/Release/netstandard2.0/DotNetFrameworkDll.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/bin/Release/netstandard2.0/DotNetFrameworkDll.deps.json -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/bin/Release/netstandard2.0/DotNetFrameworkDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/bin/Release/netstandard2.0/DotNetFrameworkDll.dll -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/bin/x64/Release/netstandard2.0/DotNetFrameworkDll.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/bin/x64/Release/netstandard2.0/DotNetFrameworkDll.deps.json -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/bin/x64/Release/netstandard2.0/DotNetFrameworkDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/bin/x64/Release/netstandard2.0/DotNetFrameworkDll.dll -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/Debug/netstandard2.0/DotNetFrameworkDll.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/Debug/netstandard2.0/DotNetFrameworkDll.AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/DotNetFrameworkDll.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/DotNetFrameworkDll.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/DotNetFrameworkDll.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/DotNetFrameworkDll.csproj.nuget.g.props -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/DotNetFrameworkDll.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/DotNetFrameworkDll.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/Release/netstandard2.0/DotNetFrameworkDll.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/Release/netstandard2.0/DotNetFrameworkDll.AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/Release/netstandard2.0/DotNetFrameworkDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/Release/netstandard2.0/DotNetFrameworkDll.dll -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/project.assets.json -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/x64/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/x64/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/x64/Release/netstandard2.0/DotNetFrameworkDll.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/x64/Release/netstandard2.0/DotNetFrameworkDll.AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkDll/obj/x64/Release/netstandard2.0/DotNetFrameworkDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkDll/obj/x64/Release/netstandard2.0/DotNetFrameworkDll.dll -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/.vs/DotNetFrameworkExe/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/.vs/DotNetFrameworkExe/v16/.suo -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/.vs/DotNetFrameworkExe/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/.vs/DotNetFrameworkExe/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/App.config -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/DotNetFrameworkExe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/DotNetFrameworkExe.csproj -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/DotNetFrameworkExe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/DotNetFrameworkExe.sln -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Form1.Designer.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Form1.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Form1.resx -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Program.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/Properties/Settings.settings -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/bin/Release/DotNetFrameworkExe.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/bin/Release/DotNetFrameworkExe.exe.config -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/bin/x64/Release/DotNetFrameworkExe.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/bin/x64/Release/DotNetFrameworkExe.exe.config -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/Release/DotNetFrameworkExe.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/Release/DotNetFrameworkExe.Form1.resources -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/Release/DotNetFrameworkExe.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/Release/DotNetFrameworkExe.Properties.Resources.resources -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/Release/DotNetFrameworkExe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/Release/DotNetFrameworkExe.exe -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/x64/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/x64/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/x64/Release/DotNetFrameworkExe.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/x64/Release/DotNetFrameworkExe.Form1.resources -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/x64/Release/DotNetFrameworkExe.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/x64/Release/DotNetFrameworkExe.Properties.Resources.resources -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/x64/Release/DotNetFrameworkExe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/x64/Release/DotNetFrameworkExe.exe -------------------------------------------------------------------------------- /Tests/DotNetFrameworkExe/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/Tests/DotNetFrameworkExe/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /x64/Release/Moneta.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/x64/Release/Moneta.res -------------------------------------------------------------------------------- /x64/Release/Moneta.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrest-orr/moneta/HEAD/x64/Release/Moneta.vcxproj.FileListAbsolute.txt --------------------------------------------------------------------------------