├── .vs ├── PosPrint │ ├── DesignTimeBuild │ │ └── .dtbcache │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── v16 │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── ProjectSettings.json └── slnx.sqlite ├── PosPrint.sln ├── PosPrint ├── .vs │ └── PosPrint │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── App.config ├── App.xaml ├── App.xaml.cs ├── BusinessSetup.xaml ├── BusinessSetup.xaml.cs ├── LineDisplay.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── Branch.cs │ ├── Business.cs │ ├── Order.cs │ └── Product.cs ├── PosPrint.csproj ├── PosPrint.csproj.user ├── PrintService.cs ├── PrintText.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── bin │ └── Debug │ │ ├── CrystalDecisions.CrystalReports.Engine.dll │ │ ├── CrystalDecisions.ReportAppServer.ClientDoc.dll │ │ ├── CrystalDecisions.ReportAppServer.CommLayer.dll │ │ ├── CrystalDecisions.ReportAppServer.CommonControls.dll │ │ ├── CrystalDecisions.ReportAppServer.CommonObjectModel.dll │ │ ├── CrystalDecisions.ReportAppServer.Controllers.dll │ │ ├── CrystalDecisions.ReportAppServer.CubeDefModel.dll │ │ ├── CrystalDecisions.ReportAppServer.DataDefModel.dll │ │ ├── CrystalDecisions.ReportAppServer.DataSetConversion.dll │ │ ├── CrystalDecisions.ReportAppServer.ObjectFactory.dll │ │ ├── CrystalDecisions.ReportAppServer.Prompting.dll │ │ ├── CrystalDecisions.ReportAppServer.ReportDefModel.dll │ │ ├── CrystalDecisions.ReportAppServer.XmlSerialize.dll │ │ ├── CrystalDecisions.ReportSource.dll │ │ ├── CrystalDecisions.Shared.dll │ │ ├── PosPrint.exe │ │ ├── PosPrint.exe.config │ │ ├── PosPrint.pdb │ │ └── stdole.dll └── obj │ ├── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── BusinessSetup.baml │ ├── BusinessSetup.g.cs │ ├── BusinessSetup.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── PosPrint.Properties.Resources.resources │ ├── PosPrint.csproj.CopyComplete │ ├── PosPrint.csproj.CoreCompileInputs.cache │ ├── PosPrint.csproj.FileListAbsolute.txt │ ├── PosPrint.csproj.GenerateResource.cache │ ├── PosPrint.csprojAssemblyReference.cache │ ├── PosPrint.exe │ ├── PosPrint.g.resources │ ├── PosPrint.pdb │ ├── PosPrint_MarkupCompile.cache │ ├── PosPrint_MarkupCompile.i.cache │ ├── PosPrint_MarkupCompile.lref │ ├── TempPE │ │ ├── Properties.Resources.Designer.cs.dll │ │ └── SalesReport.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Views │ │ └── MainWindow.g.i.cs │ └── Release │ ├── App.g.cs │ ├── BusinessSetup.g.cs │ ├── MainWindow.g.cs │ └── PosPrint_MarkupCompile.lref ├── UpgradeLog.htm └── gitignore /.vs/PosPrint/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/PosPrint/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/PosPrint/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/PosPrint/v15/.suo -------------------------------------------------------------------------------- /.vs/PosPrint/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/PosPrint/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/PosPrint/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/PosPrint/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/PosPrint/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/PosPrint/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/PosPrint/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/PosPrint/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/PosPrint/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/PosPrint/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /PosPrint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint.sln -------------------------------------------------------------------------------- /PosPrint/.vs/PosPrint/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/.vs/PosPrint/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /PosPrint/.vs/PosPrint/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/.vs/PosPrint/v15/.suo -------------------------------------------------------------------------------- /PosPrint/.vs/PosPrint/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PosPrint/.vs/PosPrint/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/.vs/PosPrint/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /PosPrint/.vs/PosPrint/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/.vs/PosPrint/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /PosPrint/.vs/PosPrint/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/.vs/PosPrint/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /PosPrint/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/App.config -------------------------------------------------------------------------------- /PosPrint/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/App.xaml -------------------------------------------------------------------------------- /PosPrint/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/App.xaml.cs -------------------------------------------------------------------------------- /PosPrint/BusinessSetup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/BusinessSetup.xaml -------------------------------------------------------------------------------- /PosPrint/BusinessSetup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/BusinessSetup.xaml.cs -------------------------------------------------------------------------------- /PosPrint/LineDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/LineDisplay.cs -------------------------------------------------------------------------------- /PosPrint/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/MainWindow.xaml -------------------------------------------------------------------------------- /PosPrint/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PosPrint/Model/Branch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Model/Branch.cs -------------------------------------------------------------------------------- /PosPrint/Model/Business.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Model/Business.cs -------------------------------------------------------------------------------- /PosPrint/Model/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Model/Order.cs -------------------------------------------------------------------------------- /PosPrint/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Model/Product.cs -------------------------------------------------------------------------------- /PosPrint/PosPrint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/PosPrint.csproj -------------------------------------------------------------------------------- /PosPrint/PosPrint.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/PosPrint.csproj.user -------------------------------------------------------------------------------- /PosPrint/PrintService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/PrintService.cs -------------------------------------------------------------------------------- /PosPrint/PrintText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/PrintText.cs -------------------------------------------------------------------------------- /PosPrint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PosPrint/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PosPrint/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Properties/Resources.resx -------------------------------------------------------------------------------- /PosPrint/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PosPrint/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/Properties/Settings.settings -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.CrystalReports.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.CrystalReports.Engine.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.ClientDoc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.ClientDoc.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CommLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CommLayer.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CommonControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CommonControls.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CommonObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CommonObjectModel.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.Controllers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.Controllers.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CubeDefModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.CubeDefModel.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.DataDefModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.DataDefModel.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.DataSetConversion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.DataSetConversion.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.ObjectFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.ObjectFactory.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.Prompting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.Prompting.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.ReportDefModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.ReportDefModel.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.XmlSerialize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportAppServer.XmlSerialize.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.ReportSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.ReportSource.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/CrystalDecisions.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/CrystalDecisions.Shared.dll -------------------------------------------------------------------------------- /PosPrint/bin/Debug/PosPrint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/PosPrint.exe -------------------------------------------------------------------------------- /PosPrint/bin/Debug/PosPrint.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/PosPrint.exe.config -------------------------------------------------------------------------------- /PosPrint/bin/Debug/PosPrint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/PosPrint.pdb -------------------------------------------------------------------------------- /PosPrint/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /PosPrint/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /PosPrint/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /PosPrint/obj/Debug/BusinessSetup.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/BusinessSetup.baml -------------------------------------------------------------------------------- /PosPrint/obj/Debug/BusinessSetup.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/BusinessSetup.g.cs -------------------------------------------------------------------------------- /PosPrint/obj/Debug/BusinessSetup.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/BusinessSetup.g.i.cs -------------------------------------------------------------------------------- /PosPrint/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /PosPrint/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /PosPrint/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.Properties.Resources.resources -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.exe -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.g.resources -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint.pdb -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint_MarkupCompile.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint_MarkupCompile.i.cache -------------------------------------------------------------------------------- /PosPrint/obj/Debug/PosPrint_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/PosPrint_MarkupCompile.lref -------------------------------------------------------------------------------- /PosPrint/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /PosPrint/obj/Debug/TempPE/SalesReport.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/TempPE/SalesReport.cs.dll -------------------------------------------------------------------------------- /PosPrint/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PosPrint/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PosPrint/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PosPrint/obj/Debug/Views/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Debug/Views/MainWindow.g.i.cs -------------------------------------------------------------------------------- /PosPrint/obj/Release/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Release/App.g.cs -------------------------------------------------------------------------------- /PosPrint/obj/Release/BusinessSetup.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Release/BusinessSetup.g.cs -------------------------------------------------------------------------------- /PosPrint/obj/Release/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Release/MainWindow.g.cs -------------------------------------------------------------------------------- /PosPrint/obj/Release/PosPrint_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/PosPrint/obj/Release/PosPrint_MarkupCompile.lref -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/ThermalPrinterReceipt/HEAD/gitignore --------------------------------------------------------------------------------