├── .gitignore ├── CHANGES.md ├── LICENSE.md ├── README.md ├── doc ├── index.md ├── libz-icon.png ├── matrix.md ├── n.png ├── net20.md ├── scenarios.md ├── signing.md ├── tracing.md ├── vidcoder.md └── y.png └── src ├── .paket ├── paket.bootstrapper.exe └── paket.targets ├── LibZ.Bootstrap.35 ├── LibZ.Bootstrap.35.csproj ├── LibZResolver.header.cs └── Properties │ └── AssemblyInfo.cs ├── LibZ.Bootstrap.40 ├── LibZ.Bootstrap.40.csproj ├── LibZResolver.cs └── Properties │ └── AssemblyInfo.cs ├── LibZ.Codec.Doboz ├── DobozCodec.cs ├── LibZ.Codec.Doboz.csproj ├── Properties │ └── AssemblyInfo.cs └── paket.references ├── LibZ.Codec.LZ4 ├── LZ4Codec.cs ├── LibZ.Codec.LZ4.csproj ├── Properties │ └── AssemblyInfo.cs └── paket.references ├── LibZ.Injected.35 ├── LibZ.Injected.35.csproj └── Properties │ └── AssemblyInfo.cs ├── LibZ.Injected.40 ├── AsmZResolver.cs ├── Decoders │ ├── DobozDecoder.cs │ └── LZ4Decoder.cs ├── LibZ.Injected.40.csproj ├── LibZInitializer.cs └── Properties │ └── AssemblyInfo.cs ├── LibZ.Manager ├── AppendOptions.cs ├── AssemblyInfo.cs ├── LibZ.Manager.csproj ├── LibZContainer.cs └── Properties │ └── AssemblyInfo.cs ├── LibZ.Msil ├── AssemblyArchitecture.cs ├── LibZ.Msil.csproj ├── MsilUtilities.cs ├── Properties │ └── AssemblyInfo.cs └── paket.references ├── LibZ.Tool.InjectIL ├── Extensions.cs ├── InstrumentHelper.cs ├── LibZ.Tool.InjectIL.csproj ├── Precompiled.Designer.cs ├── Precompiled.resx ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── .folder ├── TemplateCopy.cs └── paket.references ├── LibZ.Tool.Interfaces ├── ICodec.cs ├── LibZ.Tool.Interfaces.csproj └── Properties │ └── AssemblyInfo.cs ├── LibZ.Tool ├── Commands │ ├── AddLibraryCommand.cs │ ├── InjectDllCommand.cs │ ├── InjectLibZCommand.cs │ ├── InstrumentLibZCommand.cs │ ├── ListLibraryCommand.cs │ ├── RebuildCommand.cs │ ├── SignAndFixCommand.cs │ └── SignCommand.cs ├── DefaultCodecs.cs ├── LibZ.Tool.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Tasks │ ├── AddLibraryTask.cs │ ├── InjectDllTask.cs │ ├── InjectLibZTask.cs │ ├── InstrumentLibZTask.cs │ ├── ListLibraryContentTask.cs │ ├── RebuildLibraryTask.cs │ ├── SignAndFixAssembliesTask.cs │ ├── SignAssembliesTask.cs │ ├── TaskBase.cs │ └── TopologicalSort.cs └── paket.references ├── LibZ.nuspec ├── LibZ.sln ├── LibZ.sln.DotSettings ├── Packages.dgml ├── Tests ├── TestApp20 │ ├── Linq20 │ │ ├── Linq.cs │ │ ├── Linq20.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleArchitecture │ │ ├── ModuleArchitecture.csproj │ │ ├── ModuleArchitectureCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleBetween │ │ ├── ModuleBetween.csproj │ │ ├── ModuleBetweenCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByFull │ │ ├── ModuleByFull.csproj │ │ ├── ModuleByFullCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByPartial │ │ ├── ModuleByPartial.csproj │ │ ├── ModuleByPartialCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByReference │ │ ├── ModuleByReference.csproj │ │ ├── ModuleByReferenceCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── TestApp.sln │ ├── TestApp.sln.DotSettings │ ├── TestApp │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── TestApp.csproj │ └── test │ │ ├── make_release.cmd │ │ ├── rebuild.cmd │ │ ├── test_embed_all_asmz.cmd │ │ ├── test_embed_asmz_in_libz.cmd │ │ ├── test_embed_libz_in_asmz.cmd │ │ ├── test_embed_two_libz.cmd │ │ └── test_pack_all_libz.cmd ├── TestApp35 │ ├── ModuleArchitecture │ │ ├── ModuleArchitecture.csproj │ │ ├── ModuleArchitectureCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleBetween │ │ ├── ModuleBetween.csproj │ │ ├── ModuleBetweenCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByFull │ │ ├── ModuleByFull.csproj │ │ ├── ModuleByFullCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByPartial │ │ ├── ModuleByPartial.csproj │ │ ├── ModuleByPartialCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByReference │ │ ├── ModuleByReference.csproj │ │ ├── ModuleByReferenceCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── TestApp.sln │ ├── TestApp.sln.DotSettings │ ├── TestApp │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── TestApp.csproj │ └── test │ │ ├── make_release.cmd │ │ ├── rebuild.cmd │ │ ├── test_embed_all_asmz.cmd │ │ ├── test_embed_asmz_in_libz.cmd │ │ ├── test_embed_libz_in_asmz.cmd │ │ ├── test_embed_two_libz.cmd │ │ └── test_pack_all_libz.cmd ├── TestApp40 │ ├── ModuleArchitecture │ │ ├── ModuleArchitecture.csproj │ │ ├── ModuleArchitectureCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleBetween │ │ ├── ModuleBetween.csproj │ │ ├── ModuleBetweenCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByFull │ │ ├── ModuleByFull.csproj │ │ ├── ModuleByFullCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByPartial │ │ ├── ModuleByPartial.csproj │ │ ├── ModuleByPartialCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleByReference │ │ ├── ModuleByReference.csproj │ │ ├── ModuleByReferenceCode.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ModuleLZ4 │ │ ├── LZ4.dll │ │ ├── LZ4cc.x64.dll │ │ ├── LZ4cc.x86.dll │ │ ├── LZ4mm.x64.dll │ │ ├── LZ4mm.x86.dll │ │ ├── LZ4n.dll │ │ ├── LZ4s.dll │ │ ├── ModuleLZ4.csproj │ │ ├── ModuleLZ4Code.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── TestApp.sln │ ├── TestApp.sln.DotSettings │ ├── TestApp │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── TestApp.csproj │ └── test │ │ ├── make_release.cmd │ │ ├── rebuild.cmd │ │ ├── test_embed_all_asmz.cmd │ │ ├── test_embed_asmz_in_libz.cmd │ │ ├── test_embed_libz_in_asmz.cmd │ │ ├── test_embed_two_libz.cmd │ │ └── test_pack_all_libz.cmd └── TestApp45 │ ├── ModuleArchitecture │ ├── ModuleArchitecture.csproj │ ├── ModuleArchitectureCode.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ModuleBetween │ ├── ModuleBetween.csproj │ ├── ModuleBetweenCode.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ModuleByFull │ ├── ModuleByFull.csproj │ ├── ModuleByFullCode.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ModuleByPartial │ ├── ModuleByPartial.csproj │ ├── ModuleByPartialCode.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ModuleByReference │ ├── ModuleByReference.csproj │ ├── ModuleByReferenceCode.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ModuleLZ4 │ ├── LZ4.dll │ ├── LZ4cc.x64.dll │ ├── LZ4cc.x86.dll │ ├── LZ4mm.x64.dll │ ├── LZ4mm.x86.dll │ ├── LZ4n.dll │ ├── LZ4s.dll │ ├── ModuleLZ4.csproj │ ├── ModuleLZ4Code.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── TestApp.sln │ ├── TestApp.sln.DotSettings │ ├── TestApp │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestApp.csproj │ └── test │ ├── make_release.cmd │ ├── rebuild.cmd │ ├── test_embed_all_asmz.cmd │ ├── test_embed_asmz_in_libz.cmd │ ├── test_embed_libz_in_asmz.cmd │ ├── test_embed_two_libz.cmd │ └── test_pack_all_libz.cmd ├── build.fsx ├── external └── Ionic.Zlib.dll ├── fake.cmd ├── libz ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── libz.csproj └── libz.ico ├── paket.cmd ├── paket.dependencies └── paket.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/README.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/libz-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/libz-icon.png -------------------------------------------------------------------------------- /doc/matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/matrix.md -------------------------------------------------------------------------------- /doc/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/n.png -------------------------------------------------------------------------------- /doc/net20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/net20.md -------------------------------------------------------------------------------- /doc/scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/scenarios.md -------------------------------------------------------------------------------- /doc/signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/signing.md -------------------------------------------------------------------------------- /doc/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/tracing.md -------------------------------------------------------------------------------- /doc/vidcoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/vidcoder.md -------------------------------------------------------------------------------- /doc/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/doc/y.png -------------------------------------------------------------------------------- /src/.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /src/.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/.paket/paket.targets -------------------------------------------------------------------------------- /src/LibZ.Bootstrap.35/LibZ.Bootstrap.35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Bootstrap.35/LibZ.Bootstrap.35.csproj -------------------------------------------------------------------------------- /src/LibZ.Bootstrap.35/LibZResolver.header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Bootstrap.35/LibZResolver.header.cs -------------------------------------------------------------------------------- /src/LibZ.Bootstrap.35/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Bootstrap.35/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Bootstrap.40/LibZ.Bootstrap.40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Bootstrap.40/LibZ.Bootstrap.40.csproj -------------------------------------------------------------------------------- /src/LibZ.Bootstrap.40/LibZResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Bootstrap.40/LibZResolver.cs -------------------------------------------------------------------------------- /src/LibZ.Bootstrap.40/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Bootstrap.40/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Codec.Doboz/DobozCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Codec.Doboz/DobozCodec.cs -------------------------------------------------------------------------------- /src/LibZ.Codec.Doboz/LibZ.Codec.Doboz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Codec.Doboz/LibZ.Codec.Doboz.csproj -------------------------------------------------------------------------------- /src/LibZ.Codec.Doboz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Codec.Doboz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Codec.Doboz/paket.references: -------------------------------------------------------------------------------- 1 | doboz4net -------------------------------------------------------------------------------- /src/LibZ.Codec.LZ4/LZ4Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Codec.LZ4/LZ4Codec.cs -------------------------------------------------------------------------------- /src/LibZ.Codec.LZ4/LibZ.Codec.LZ4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Codec.LZ4/LibZ.Codec.LZ4.csproj -------------------------------------------------------------------------------- /src/LibZ.Codec.LZ4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Codec.LZ4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Codec.LZ4/paket.references: -------------------------------------------------------------------------------- 1 | lz4net -------------------------------------------------------------------------------- /src/LibZ.Injected.35/LibZ.Injected.35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.35/LibZ.Injected.35.csproj -------------------------------------------------------------------------------- /src/LibZ.Injected.35/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.35/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Injected.40/AsmZResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.40/AsmZResolver.cs -------------------------------------------------------------------------------- /src/LibZ.Injected.40/Decoders/DobozDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.40/Decoders/DobozDecoder.cs -------------------------------------------------------------------------------- /src/LibZ.Injected.40/Decoders/LZ4Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.40/Decoders/LZ4Decoder.cs -------------------------------------------------------------------------------- /src/LibZ.Injected.40/LibZ.Injected.40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.40/LibZ.Injected.40.csproj -------------------------------------------------------------------------------- /src/LibZ.Injected.40/LibZInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.40/LibZInitializer.cs -------------------------------------------------------------------------------- /src/LibZ.Injected.40/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Injected.40/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Manager/AppendOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Manager/AppendOptions.cs -------------------------------------------------------------------------------- /src/LibZ.Manager/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Manager/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Manager/LibZ.Manager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Manager/LibZ.Manager.csproj -------------------------------------------------------------------------------- /src/LibZ.Manager/LibZContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Manager/LibZContainer.cs -------------------------------------------------------------------------------- /src/LibZ.Manager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Manager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Msil/AssemblyArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Msil/AssemblyArchitecture.cs -------------------------------------------------------------------------------- /src/LibZ.Msil/LibZ.Msil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Msil/LibZ.Msil.csproj -------------------------------------------------------------------------------- /src/LibZ.Msil/MsilUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Msil/MsilUtilities.cs -------------------------------------------------------------------------------- /src/LibZ.Msil/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Msil/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Msil/paket.references: -------------------------------------------------------------------------------- 1 | Mono.Cecil 2 | NLog -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/Extensions.cs -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/InstrumentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/InstrumentHelper.cs -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/LibZ.Tool.InjectIL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/LibZ.Tool.InjectIL.csproj -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/Precompiled.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/Precompiled.Designer.cs -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/Precompiled.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/Precompiled.resx -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/Resources/.folder: -------------------------------------------------------------------------------- 1 | Folder with recompiled assemblies -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/TemplateCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.InjectIL/TemplateCopy.cs -------------------------------------------------------------------------------- /src/LibZ.Tool.InjectIL/paket.references: -------------------------------------------------------------------------------- 1 | Mono.Cecil 2 | NLog -------------------------------------------------------------------------------- /src/LibZ.Tool.Interfaces/ICodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.Interfaces/ICodec.cs -------------------------------------------------------------------------------- /src/LibZ.Tool.Interfaces/LibZ.Tool.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.Interfaces/LibZ.Tool.Interfaces.csproj -------------------------------------------------------------------------------- /src/LibZ.Tool.Interfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool.Interfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/AddLibraryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/AddLibraryCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/InjectDllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/InjectDllCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/InjectLibZCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/InjectLibZCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/InstrumentLibZCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/InstrumentLibZCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/ListLibraryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/ListLibraryCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/RebuildCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/RebuildCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/SignAndFixCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/SignAndFixCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Commands/SignCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Commands/SignCommand.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/DefaultCodecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/DefaultCodecs.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/LibZ.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/LibZ.Tool.csproj -------------------------------------------------------------------------------- /src/LibZ.Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Program.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/AddLibraryTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/AddLibraryTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/InjectDllTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/InjectDllTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/InjectLibZTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/InjectLibZTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/InstrumentLibZTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/InstrumentLibZTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/ListLibraryContentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/ListLibraryContentTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/RebuildLibraryTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/RebuildLibraryTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/SignAndFixAssembliesTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/SignAndFixAssembliesTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/SignAssembliesTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/SignAssembliesTask.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/TaskBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/TaskBase.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/Tasks/TopologicalSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.Tool/Tasks/TopologicalSort.cs -------------------------------------------------------------------------------- /src/LibZ.Tool/paket.references: -------------------------------------------------------------------------------- 1 | ManyConsole 2 | Mono.Cecil 3 | NDesk.Options 4 | NLog -------------------------------------------------------------------------------- /src/LibZ.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.nuspec -------------------------------------------------------------------------------- /src/LibZ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.sln -------------------------------------------------------------------------------- /src/LibZ.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/LibZ.sln.DotSettings -------------------------------------------------------------------------------- /src/Packages.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Packages.dgml -------------------------------------------------------------------------------- /src/Tests/TestApp20/Linq20/Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/Linq20/Linq.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/Linq20/Linq20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/Linq20/Linq20.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/Linq20/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/Linq20/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleArchitecture/ModuleArchitecture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleArchitecture/ModuleArchitecture.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleArchitecture/ModuleArchitectureCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleArchitecture/ModuleArchitectureCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleArchitecture/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleArchitecture/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleBetween/ModuleBetween.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleBetween/ModuleBetween.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleBetween/ModuleBetweenCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleBetween/ModuleBetweenCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleBetween/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleBetween/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByFull/ModuleByFull.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByFull/ModuleByFull.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByFull/ModuleByFullCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByFull/ModuleByFullCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByFull/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByFull/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByPartial/ModuleByPartial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByPartial/ModuleByPartial.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByPartial/ModuleByPartialCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByPartial/ModuleByPartialCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByPartial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByPartial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByReference/ModuleByReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByReference/ModuleByReference.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByReference/ModuleByReferenceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByReference/ModuleByReferenceCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/ModuleByReference/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/ModuleByReference/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/TestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/TestApp.sln -------------------------------------------------------------------------------- /src/Tests/TestApp20/TestApp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/TestApp.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/TestApp20/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/TestApp/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp20/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/make_release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/make_release.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/rebuild.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/test_embed_all_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/test_embed_all_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/test_embed_asmz_in_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/test_embed_asmz_in_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/test_embed_libz_in_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/test_embed_libz_in_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/test_embed_two_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/test_embed_two_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp20/test/test_pack_all_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp20/test/test_pack_all_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleArchitecture/ModuleArchitecture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleArchitecture/ModuleArchitecture.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleArchitecture/ModuleArchitectureCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleArchitecture/ModuleArchitectureCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleArchitecture/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleArchitecture/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleBetween/ModuleBetween.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleBetween/ModuleBetween.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleBetween/ModuleBetweenCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleBetween/ModuleBetweenCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleBetween/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleBetween/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByFull/ModuleByFull.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByFull/ModuleByFull.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByFull/ModuleByFullCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByFull/ModuleByFullCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByFull/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByFull/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByPartial/ModuleByPartial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByPartial/ModuleByPartial.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByPartial/ModuleByPartialCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByPartial/ModuleByPartialCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByPartial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByPartial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByReference/ModuleByReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByReference/ModuleByReference.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByReference/ModuleByReferenceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByReference/ModuleByReferenceCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/ModuleByReference/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/ModuleByReference/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/TestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/TestApp.sln -------------------------------------------------------------------------------- /src/Tests/TestApp35/TestApp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/TestApp.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/TestApp35/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/TestApp/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp35/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/make_release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/make_release.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/rebuild.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/test_embed_all_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/test_embed_all_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/test_embed_asmz_in_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/test_embed_asmz_in_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/test_embed_libz_in_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/test_embed_libz_in_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/test_embed_two_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/test_embed_two_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp35/test/test_pack_all_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp35/test/test_pack_all_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleArchitecture/ModuleArchitecture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleArchitecture/ModuleArchitecture.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleArchitecture/ModuleArchitectureCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleArchitecture/ModuleArchitectureCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleArchitecture/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleArchitecture/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleBetween/ModuleBetween.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleBetween/ModuleBetween.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleBetween/ModuleBetweenCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleBetween/ModuleBetweenCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleBetween/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleBetween/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByFull/ModuleByFull.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByFull/ModuleByFull.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByFull/ModuleByFullCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByFull/ModuleByFullCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByFull/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByFull/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByPartial/ModuleByPartial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByPartial/ModuleByPartial.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByPartial/ModuleByPartialCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByPartial/ModuleByPartialCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByPartial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByPartial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByReference/ModuleByReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByReference/ModuleByReference.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByReference/ModuleByReferenceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByReference/ModuleByReferenceCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleByReference/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleByReference/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4cc.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4cc.x64.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4cc.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4cc.x86.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4mm.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4mm.x64.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4mm.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4mm.x86.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4n.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4n.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/LZ4s.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/LZ4s.dll -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/ModuleLZ4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/ModuleLZ4.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/ModuleLZ4Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/ModuleLZ4Code.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/ModuleLZ4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/ModuleLZ4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/TestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/TestApp.sln -------------------------------------------------------------------------------- /src/Tests/TestApp40/TestApp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/TestApp.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/TestApp40/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/TestApp/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp40/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/make_release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/make_release.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/rebuild.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/test_embed_all_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/test_embed_all_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/test_embed_asmz_in_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/test_embed_asmz_in_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/test_embed_libz_in_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/test_embed_libz_in_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/test_embed_two_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/test_embed_two_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp40/test/test_pack_all_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp40/test/test_pack_all_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleArchitecture/ModuleArchitecture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleArchitecture/ModuleArchitecture.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleArchitecture/ModuleArchitectureCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleArchitecture/ModuleArchitectureCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleArchitecture/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleArchitecture/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleBetween/ModuleBetween.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleBetween/ModuleBetween.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleBetween/ModuleBetweenCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleBetween/ModuleBetweenCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleBetween/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleBetween/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByFull/ModuleByFull.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByFull/ModuleByFull.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByFull/ModuleByFullCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByFull/ModuleByFullCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByFull/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByFull/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByPartial/ModuleByPartial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByPartial/ModuleByPartial.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByPartial/ModuleByPartialCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByPartial/ModuleByPartialCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByPartial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByPartial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByReference/ModuleByReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByReference/ModuleByReference.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByReference/ModuleByReferenceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByReference/ModuleByReferenceCode.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleByReference/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleByReference/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4cc.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4cc.x64.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4cc.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4cc.x86.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4mm.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4mm.x64.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4mm.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4mm.x86.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4n.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4n.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/LZ4s.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/LZ4s.dll -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/ModuleLZ4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/ModuleLZ4.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/ModuleLZ4Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/ModuleLZ4Code.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/ModuleLZ4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/ModuleLZ4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/TestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/TestApp.sln -------------------------------------------------------------------------------- /src/Tests/TestApp45/TestApp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/TestApp.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/TestApp45/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/TestApp/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestApp45/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/make_release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/make_release.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/rebuild.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/test_embed_all_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/test_embed_all_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/test_embed_asmz_in_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/test_embed_asmz_in_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/test_embed_libz_in_asmz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/test_embed_libz_in_asmz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/test_embed_two_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/test_embed_two_libz.cmd -------------------------------------------------------------------------------- /src/Tests/TestApp45/test/test_pack_all_libz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/Tests/TestApp45/test/test_pack_all_libz.cmd -------------------------------------------------------------------------------- /src/build.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/build.fsx -------------------------------------------------------------------------------- /src/external/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/external/Ionic.Zlib.dll -------------------------------------------------------------------------------- /src/fake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/fake.cmd -------------------------------------------------------------------------------- /src/libz/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/libz/Program.cs -------------------------------------------------------------------------------- /src/libz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/libz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/libz/libz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/libz/libz.csproj -------------------------------------------------------------------------------- /src/libz/libz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/libz/libz.ico -------------------------------------------------------------------------------- /src/paket.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/paket.cmd -------------------------------------------------------------------------------- /src/paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/paket.dependencies -------------------------------------------------------------------------------- /src/paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiloszKrajewski/LibZ/HEAD/src/paket.lock --------------------------------------------------------------------------------