ShenMaPrint└── ShenMaPrint
├── ShenMaPrint
│ ├── App.config
│ ├── CustomRollingFileLogger.cs
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Form2.Designer.cs
│ ├── Form2.cs
│ ├── Form2.resx
│ ├── Form3.Designer.cs
│ ├── Form3.cs
│ ├── Form3.resx
│ ├── Form4.Designer.cs
│ ├── Form4.cs
│ ├── Form4.resx
│ ├── Form5.Designer.cs
│ ├── Form5.cs
│ ├── Form5.resx
│ ├── Form6.Designer.cs
│ ├── Form6.cs
│ ├── Form6.resx
│ ├── Helpers
│ │ └── LogHelper.cs
│ ├── INIFileHelper.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── DataSources
│ │ │ └── WcfService1.CompositeType.datasource
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ReadParamAppender.cs
│ ├── ShenMaPrint.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── HslCommunication.dll
│ │ │ ├── Log
│ │ │ │ ├── 2021_10_11
│ │ │ │ │ └── PLC
│ │ │ │ │ └── main.log.txt
│ │ │ │ ├── 2021_10_16
│ │ │ │ │ └── PLC
│ │ │ │ │ └── main.log.txt
│ │ │ │ ├── 2021_10_18
│ │ │ │ │ └── PLC
│ │ │ │ │ └── main.log.txt
│ │ │ │ ├── 2021_10_19
│ │ │ │ │ └── PLC
│ │ │ │ │ └── main.log.txt
│ │ │ │ ├── 2021_10_26
│ │ │ │ │ └── PLC
│ │ │ │ │ └── main.log.txt
│ │ │ │ └── 2021_11_06
│ │ │ │ └── PLC
│ │ │ │ └── main.log.txt
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Setting.ini
│ │ │ ├── ShenMaPrint.exe
│ │ │ ├── ShenMaPrint.exe.config
│ │ │ ├── ShenMaPrint.pdb
│ │ │ ├── ShenMaPrint.vshost.exe
│ │ │ ├── ShenMaPrint.vshost.exe.config
│ │ │ ├── ShenMaPrint.vshost.exe.manifest
│ │ │ ├── TSCLIB.dll
│ │ │ ├── TSCLIB.lib
│ │ │ ├── WcfService1.dll
│ │ │ ├── WcfService1.pdb
│ │ │ └── log4net.dll
│ │ ├── HslCommunication.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Release
│ │ ├── TSCLIB.dll
│ │ ├── TSCLIB.lib
│ │ ├── log4net.config
│ │ ├── log4net.dll
│ │ └── tsclibnet.dll
│ ├── log4net.config
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── ShenMaPrint.Form1.resources
│ ├── ShenMaPrint.Form2.resources
│ ├── ShenMaPrint.Form3.resources
│ ├── ShenMaPrint.Form4.resources
│ ├── ShenMaPrint.Form5.resources
│ ├── ShenMaPrint.Form6.resources
│ ├── ShenMaPrint.Properties.Resources.resources
│ ├── ShenMaPrint.csproj.FileListAbsolute.txt
│ ├── ShenMaPrint.csproj.GenerateResource.Cache
│ ├── ShenMaPrint.csprojResolveAssemblyReference.cache
│ ├── ShenMaPrint.exe
│ ├── ShenMaPrint.pdb
│ ├── TempPE
│ │ └── Service References.ServiceReference1.Reference.cs.dll
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── ShenMaPrint.sln
└── ShenMaPrint.v11.suo
24 directories, 79 files
评论