├── .gitattributes ├── .gitignore ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── DistTransClient.exe - 快捷方式.lnk ├── DistTransClient ├── App.config ├── DistTransClient.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DistTransDto ├── BuyProductDto.cs ├── CommonInterface │ ├── IOrderItems.cs │ ├── IOrders.cs │ └── IProduct.cs ├── DistTrans3PCState.cs ├── DistTransDto.csproj ├── ProductDto.cs └── Properties │ └── AssemblyInfo.cs ├── DistTransServices ├── DTCService.cs ├── DbContexts │ ├── OrderDbContext.cs │ └── ProductDbContext.cs ├── DemoService.cs ├── DistTransServices.csproj ├── Entitys │ ├── OrderEntity.cs │ ├── OrderItemEntity.cs │ └── ProductEntity.cs ├── OrderService.cs ├── ProductService.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── Host ├── DataBase │ ├── OrdersDb1.mdf │ ├── ProductsDb1.mdf │ └── ProductsDb1_log.ldf ├── DistTransDto.dll ├── DistTransServices.dll ├── DistTransServices.dll.config ├── IOCConfig.xml ├── Interop.ADOX.dll ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.xml ├── PWMIS.Access.Extensions.dll ├── PWMIS.Access.Extensions.dll.config ├── PWMIS.Access.Extensions.xml ├── PWMIS.Core.Extensions.dll ├── PWMIS.Core.Extensions.xml ├── PWMIS.Core.dll ├── PWMIS.Core.dll.config ├── PWMIS.Core.xml ├── PWMIS.EnterpriseFramework.Common.dll ├── PWMIS.EnterpriseFramework.Common.xml ├── PWMIS.EnterpriseFramework.IOC.dll ├── PWMIS.EnterpriseFramework.IOC.xml ├── PWMIS.EnterpriseFramework.Message.PublishService.dll ├── PWMIS.EnterpriseFramework.Message.PublishService.xml ├── PWMIS.EnterpriseFramework.Message.PublisherLib.dll ├── PWMIS.EnterpriseFramework.Message.PublisherLib.xml ├── PWMIS.EnterpriseFramework.Message.SubscriberLib.dll ├── PWMIS.EnterpriseFramework.Message.SubscriberLib.xml ├── PWMIS.EnterpriseFramework.ModuleRoute.dll ├── PWMIS.EnterpriseFramework.ModuleRoute.xml ├── PWMIS.EnterpriseFramework.Service.Basic.dll ├── PWMIS.EnterpriseFramework.Service.Basic.xml ├── PWMIS.EnterpriseFramework.Service.Client.dll ├── PWMIS.EnterpriseFramework.Service.Client.xml ├── PWMIS.EnterpriseFramework.Service.Group.dll ├── PWMIS.EnterpriseFramework.Service.Group.xml ├── PWMIS.EnterpriseFramework.Service.Runtime.dll ├── PWMIS.EnterpriseFramework.Service.Runtime.xml ├── PWMIS.SQLiteClient.dll ├── PWMIS.SQLiteClient.xml ├── PdfNetEF.MessageServiceHost.exe ├── PdfNetEF.MessageServiceHost.exe.config ├── PreCompile.bat ├── SucessCompiled.vbs ├── System.Data.SQLite.dll ├── System.Data.SQLite.dll.config ├── System.Data.SQLite.xml ├── TistTransApp.exe ├── TistTransApp.exe.config ├── TistTransApp.vshost.exe ├── UpdateService.bat └── x86 │ └── SQLite.Interop.dll ├── MSF-DistTransExample.sln ├── README.md ├── TistTransApp.exe - 快捷方式.lnk ├── TistTransApp ├── App.config ├── DataBase │ ├── OrdersDB_data.mdf │ ├── OrdersDb_log.ldf │ ├── ProductsDB_data.mdf │ └── ProductsDb_log.ldf ├── IOCConfig.xml ├── PdfNetEF.MessageServiceHost.exe.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TistTransApp.csproj └── packages.config ├── packages ├── Newtonsoft.Json.9.0.1 │ ├── Newtonsoft.Json.9.0.1.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 └── repositories.config └── 电商订单测试.rar /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /DistTransClient.exe - 快捷方式.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransClient.exe - 快捷方式.lnk -------------------------------------------------------------------------------- /DistTransClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransClient/App.config -------------------------------------------------------------------------------- /DistTransClient/DistTransClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransClient/DistTransClient.csproj -------------------------------------------------------------------------------- /DistTransClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransClient/Program.cs -------------------------------------------------------------------------------- /DistTransClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DistTransClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransClient/packages.config -------------------------------------------------------------------------------- /DistTransDto/BuyProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/BuyProductDto.cs -------------------------------------------------------------------------------- /DistTransDto/CommonInterface/IOrderItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/CommonInterface/IOrderItems.cs -------------------------------------------------------------------------------- /DistTransDto/CommonInterface/IOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/CommonInterface/IOrders.cs -------------------------------------------------------------------------------- /DistTransDto/CommonInterface/IProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/CommonInterface/IProduct.cs -------------------------------------------------------------------------------- /DistTransDto/DistTrans3PCState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/DistTrans3PCState.cs -------------------------------------------------------------------------------- /DistTransDto/DistTransDto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/DistTransDto.csproj -------------------------------------------------------------------------------- /DistTransDto/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/ProductDto.cs -------------------------------------------------------------------------------- /DistTransDto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransDto/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DistTransServices/DTCService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/DTCService.cs -------------------------------------------------------------------------------- /DistTransServices/DbContexts/OrderDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/DbContexts/OrderDbContext.cs -------------------------------------------------------------------------------- /DistTransServices/DbContexts/ProductDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/DbContexts/ProductDbContext.cs -------------------------------------------------------------------------------- /DistTransServices/DemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/DemoService.cs -------------------------------------------------------------------------------- /DistTransServices/DistTransServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/DistTransServices.csproj -------------------------------------------------------------------------------- /DistTransServices/Entitys/OrderEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/Entitys/OrderEntity.cs -------------------------------------------------------------------------------- /DistTransServices/Entitys/OrderItemEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/Entitys/OrderItemEntity.cs -------------------------------------------------------------------------------- /DistTransServices/Entitys/ProductEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/Entitys/ProductEntity.cs -------------------------------------------------------------------------------- /DistTransServices/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/OrderService.cs -------------------------------------------------------------------------------- /DistTransServices/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/ProductService.cs -------------------------------------------------------------------------------- /DistTransServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DistTransServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/app.config -------------------------------------------------------------------------------- /DistTransServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/DistTransServices/packages.config -------------------------------------------------------------------------------- /Host/DataBase/OrdersDb1.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/DataBase/OrdersDb1.mdf -------------------------------------------------------------------------------- /Host/DataBase/ProductsDb1.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/DataBase/ProductsDb1.mdf -------------------------------------------------------------------------------- /Host/DataBase/ProductsDb1_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/DataBase/ProductsDb1_log.ldf -------------------------------------------------------------------------------- /Host/DistTransDto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/DistTransDto.dll -------------------------------------------------------------------------------- /Host/DistTransServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/DistTransServices.dll -------------------------------------------------------------------------------- /Host/DistTransServices.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/DistTransServices.dll.config -------------------------------------------------------------------------------- /Host/IOCConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/IOCConfig.xml -------------------------------------------------------------------------------- /Host/Interop.ADOX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/Interop.ADOX.dll -------------------------------------------------------------------------------- /Host/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Host/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Host/PWMIS.Access.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Access.Extensions.dll -------------------------------------------------------------------------------- /Host/PWMIS.Access.Extensions.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Access.Extensions.dll.config -------------------------------------------------------------------------------- /Host/PWMIS.Access.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Access.Extensions.xml -------------------------------------------------------------------------------- /Host/PWMIS.Core.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Core.Extensions.dll -------------------------------------------------------------------------------- /Host/PWMIS.Core.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Core.Extensions.xml -------------------------------------------------------------------------------- /Host/PWMIS.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Core.dll -------------------------------------------------------------------------------- /Host/PWMIS.Core.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Core.dll.config -------------------------------------------------------------------------------- /Host/PWMIS.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.Core.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Common.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Common.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.IOC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.IOC.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.IOC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.IOC.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Message.PublishService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Message.PublishService.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Message.PublishService.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Message.PublishService.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Message.PublisherLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Message.PublisherLib.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Message.PublisherLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Message.PublisherLib.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Message.SubscriberLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Message.SubscriberLib.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Message.SubscriberLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Message.SubscriberLib.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.ModuleRoute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.ModuleRoute.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.ModuleRoute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.ModuleRoute.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Basic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Basic.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Basic.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Client.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Client.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Group.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Group.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Group.xml -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Runtime.dll -------------------------------------------------------------------------------- /Host/PWMIS.EnterpriseFramework.Service.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.EnterpriseFramework.Service.Runtime.xml -------------------------------------------------------------------------------- /Host/PWMIS.SQLiteClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.SQLiteClient.dll -------------------------------------------------------------------------------- /Host/PWMIS.SQLiteClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PWMIS.SQLiteClient.xml -------------------------------------------------------------------------------- /Host/PdfNetEF.MessageServiceHost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PdfNetEF.MessageServiceHost.exe -------------------------------------------------------------------------------- /Host/PdfNetEF.MessageServiceHost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PdfNetEF.MessageServiceHost.exe.config -------------------------------------------------------------------------------- /Host/PreCompile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/PreCompile.bat -------------------------------------------------------------------------------- /Host/SucessCompiled.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/SucessCompiled.vbs -------------------------------------------------------------------------------- /Host/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Host/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Host/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Host/TistTransApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/TistTransApp.exe -------------------------------------------------------------------------------- /Host/TistTransApp.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/TistTransApp.exe.config -------------------------------------------------------------------------------- /Host/TistTransApp.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/TistTransApp.vshost.exe -------------------------------------------------------------------------------- /Host/UpdateService.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/UpdateService.bat -------------------------------------------------------------------------------- /Host/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/Host/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /MSF-DistTransExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/MSF-DistTransExample.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/README.md -------------------------------------------------------------------------------- /TistTransApp.exe - 快捷方式.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp.exe - 快捷方式.lnk -------------------------------------------------------------------------------- /TistTransApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/App.config -------------------------------------------------------------------------------- /TistTransApp/DataBase/OrdersDB_data.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/DataBase/OrdersDB_data.mdf -------------------------------------------------------------------------------- /TistTransApp/DataBase/OrdersDb_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/DataBase/OrdersDb_log.ldf -------------------------------------------------------------------------------- /TistTransApp/DataBase/ProductsDB_data.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/DataBase/ProductsDB_data.mdf -------------------------------------------------------------------------------- /TistTransApp/DataBase/ProductsDb_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/DataBase/ProductsDb_log.ldf -------------------------------------------------------------------------------- /TistTransApp/IOCConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/IOCConfig.xml -------------------------------------------------------------------------------- /TistTransApp/PdfNetEF.MessageServiceHost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/PdfNetEF.MessageServiceHost.exe.config -------------------------------------------------------------------------------- /TistTransApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/Program.cs -------------------------------------------------------------------------------- /TistTransApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TistTransApp/TistTransApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/TistTransApp.csproj -------------------------------------------------------------------------------- /TistTransApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/TistTransApp/packages.config -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/Newtonsoft.Json.9.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/packages/repositories.config -------------------------------------------------------------------------------- /电商订单测试.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedoctor/MSF-DistTransExample/HEAD/电商订单测试.rar --------------------------------------------------------------------------------