´úÂë¹ÜÀí/AGVjiaoliaoPDA/pages.json
@@ -1,5 +1,6 @@ { "easycom": { "autoscan": true, "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue" }, "pages": [ //pagesæ°ç»ä¸ç¬¬ä¸é¡¹è¡¨ç¤ºåºç¨å¯å¨é¡µï¼åèï¼https://uniapp.dcloud.io/collocation/pages @@ -43,6 +44,13 @@ } }, { "path": "pages/materielGroup/OutboundTasks", "style": { "navigationBarTitleText": "åºåºè®¢åéæ©åºåº", "enablePullDownRefresh": false } }, { "path": "pages/materielGroup/InboundTask", "style": { "navigationBarTitleText": "å ¥åºè®¢å", ´úÂë¹ÜÀí/AGVjiaoliaoPDA/pages/materielGroup/EmptyOutTask.vue
@@ -66,9 +66,9 @@ <uni-easyinput type="text" v-model="PalletCode" placeholder="è¯·æ«æç©æç±»å" ref='midInput' :focus="addressFocus" /> </uni-forms-item> --> <!-- <uni-forms-item label="ç»ç¹ç¼åæ¶åºå"> <uni-forms-item label="ç»ç¹ç¼åæ¶åºå"> <uni-data-select v-model="value" :localdata="range"></uni-data-select> </uni-forms-item> --> </uni-forms-item> <uni-forms-item> <button @click="inbound" type="primary" size="default" style="margin-top: 2%;">空æåºåºæ¬è¿ç¡®è®¤</button> @@ -179,7 +179,7 @@ } this.$u.post('/api/Task/EmptyOutTask', postData).then(res => { if (res.status) { if (res.status) {x uni.$showMsg("任塿·»å æå"); this.stationcode = ""; // this.PalletCode = ""; ´úÂë¹ÜÀí/AGVjiaoliaoPDA/pages/materielGroup/OutboundTask.vue
@@ -11,15 +11,17 @@ placeholder="请æ«çç¼åæ¶ç¼å·" ref='midInput' @input="inputChangebarcode" /> </uni-forms-item> <uni-forms-item label="ç©æç±»å"> <uni-data-select v-model="PalletCode" :localdata="rangs"></uni-data-select> <uni-easyinput type="text" :focus="!addressFocus" v-model="PalletCode" placeholder="è¯·æ«æç©æç±»å" ref='midInput' @input="inputChangebarcode" /> </uni-forms-item> <uni-forms-item> <button @click="inbound" type="primary" size="default" style="margin-top: 2%;">åºåºç¡®è®¤</button> <button @click="inbound" type="primary" size="default" style="margin-top: 2%;">åºåºç¡®è®¤</button> </uni-forms-item> </uni-forms> </view> </view> </view> </view> <u-toast ref="uToast" /> </view> </template> @@ -41,7 +43,7 @@ materSn: "", sns: [], addressFocus: false, materialtype:"", materialtype: "", stationcode: "", address: "", check: true, @@ -67,7 +69,7 @@ innerAudioContext.src = src; innerAudioContext.play(); }, updateFocus() { this.$nextTick(() => { this.materSn = ''; @@ -139,8 +141,8 @@ this.$u.post('/api/Task/OutboundTasks', postData).then(res => { if (res.status) { uni.$showMsg("任塿·»å æå"); this.stationcode = ""; this.PalletCode = ""; this.stationcode = ""; // æ¸ ç©ºç¼åæ¶ç¼å· this.PalletCode = ""; // æ¸ ç©ºç©æç±»å } else { this.$refs.uToast.show({ title: res.message, ´úÂë¹ÜÀí/AGVjiaoliaoPDA/pages/materielGroup/OutboundTasks.vue
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,205 @@ <template> <view> <uni-segmented-control :current="current" :values="items" @clickItem="onClickItem"> </uni-segmented-control> <view class="content"> <view v-if="current === 0" class="headerstyle"> <view class="itemstyle"> <uni-forms label-width="120"> <uni-forms-item label="ç¼åæ¶ç¼å·"> <uni-easyinput type="text" :focus="!addressFocus" v-model="stationcode" placeholder="请æ«çç¼åæ¶ç¼å·" ref='midInput' @input="inputChangebarcode" /> </uni-forms-item> <uni-forms-item label="ç©æç±»å"> <uni-combox v-model="PalletCode" :candidates="rangs" placeholder="è¯·éæ©æè¾å ¥ç©æç±»å" @input="inputChangebarcode"></uni-combox> </uni-forms-item> <uni-forms-item> <button @click="inbound" type="primary" size="default" style="margin-top: 2%;">åºåºç¡®è®¤</button> </uni-forms-item> </uni-forms> </view> </view> </view> <u-toast ref="uToast" /> </view> </template> <script> const innerAudioContext = uni.createInnerAudioContext(); export default { data() { return { items: ['åºåº'], current: 0, matTotal: [], matInfos: [], orderNo: "", label: "", orderDetail: [], focus: false, barcode: "", materSn: "", sns: [], addressFocus: false, materialtype: "", stationcode: "", address: "", check: true, value: "", matInfo: [], value2: "", matTotals: [], rangs: [], // åå¨ç©æç±»åæ°æ® PalletCode: "" // ç©æç±»åå¼ } }, onShow() { this.getMaterialTypes(); // 页颿¾ç¤ºæ¶è·åç©æç±»åæ°æ® }, onLoad(res) { this.focus = false; this.addressFocus = false; this.orderNo = res.orderNo; this.label = "åæ®ç¼å·ï¼" + this.orderNo; this.getData(); }, methods: { voiceSpeech(src) { innerAudioContext.src = src; innerAudioContext.play(); }, updateFocus() { this.$nextTick(() => { this.materSn = ''; if (!this.focus) { this.focus = true; } }); }, barcodeFocus() { this.barcode = ''; if (this.focus) { this.focus = false; } }, getData() { var postData = this.orderNo; this.$u.post('/api/InboundOrder/GetInboundOrderDetail', postData).then((res) => { if (res.status) { this.orderDetail = res.data; if (this.orderDetail.length > 3) { this.loadVisible = true; } } }) }, getMaterialTypes() { this.$u.post('/api/MaterielInfo/GetMaterialTypes').then((res) => { if (res.status) { console.log(res.data); this.rangs = res.data.map(item => { return { value: item.number, // å设å端è¿åçæ°æ®ä¸æ number åæ®µ text: item.number // æ¾ç¤ºææ¬ }; }); } }).catch(err => { this.$refs.uToast.show({ title: err.message, type: "error" }); }); }, getMaterialTypes() { this.$u.post('/api/MaterielInfo/GetMaterialTypes').then((res) => { if (res.status) { console.log(res.data); this.rangs = res.data.map(item => item.number); // ç´æ¥ä½¿ç¨å符串æ°ç» } }).catch(err => { this.$refs.uToast.show({ title: err.message, type: "error" }); }); }, onClickItem(e) { this.focus = false; this.addressFocus = false; if (this.current !== e.currentIndex) { this.current = e.currentIndex; if (this.current == 2) { this.getData(); } } }, barcodeInput() { this.$nextTick(function(x) { if (this.barcode.length > 0) { this.focus = true; } }) }, inbound() { var postData = { MainData: { "stationcode": this.stationcode, "PalletCode": this.PalletCode, } } this.$u.post('/api/Task/OutboundTasks', postData).then(res => { if (res.status) { uni.$showMsg("任塿·»å æå"); this.stationcode = ""; // æ¸ ç©ºç¼åæ¶ç¼å· this.PalletCode = ""; // æ¸ ç©ºç©æç±»å } else { this.$refs.uToast.show({ title: res.message, type: "error" }) } }).catch(err => { this.$refs.uToast.show({ title: err.message, type: "error" }) }) }, inputChangebarcode() { this.addressFocus = false; this.$nextTick(function(x) { if (this.stationcode != '') { this.addressFocus = true; } }) }, } } </script> <style lang="scss"> @import '@/common/uni-ui.scss'; .content { display: flex; height: 150px; } .content-text { font-size: 14px; color: #666; } .itemstyle { margin-top: 30px; margin-left: 5%; } .headerstyle { width: 90%; } </style> ´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/views/taskinfo/task.vue
@@ -44,12 +44,12 @@ const searchFormOptions = ref([ [ { title: "ä»»å¡å·", field: "tasknum", type: "like" }, { title: "æçç¼å·", field: "palletCode", type: "like" }, { title: "ç©æä»£ç ", field: "materialtype", type: "like" }, { title: "å建人", field: "creater", type: "like" }, ], [ { title: "ä»»å¡ç±»å",field: "taskType",type: "selectList",dataKey: "taskTypeEnum",data: [],}, { title: "ä»»å¡ç¶æ",field: "taskStatus",type: "selectList",dataKey: "taskStatusEnum",data: [],}, { title: "ä»»å¡ç±»å",field: "taskType",type: "select",dataKey: "taskTypeEnum",data: [],}, { title: "ä»»å¡ç¶æ",field: "taskStatus",type: "select",dataKey: "agVTaskStatusEnum",data: [],}, // { title: "å··éå·", field: "roadway", type: "like" }, ], [ @@ -77,8 +77,8 @@ align: "left", }, { field: "palletCode", title: "æçç¼å·", field: "materialtype", title: "ç©æä»£ç ", type: "string", width: 150, align: "left", ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.metadata.v9.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.projects.v9.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/ProjectEvaluation/widesea_wmsserver.strings.v9.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/DesignTimeBuild/.dtbcache.v2Binary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/118b9710-bf50-4d68-a6e1-2f448e968a54.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/8b099a09-b5fb-4944-aeaf-99502cc2cd3f.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/b727b26e-5fa2-419a-aa3e-f189e6fc620d.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/c41f8083-2284-461f-ba89-3e13e9d6251c.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/f4007d5f-c1e9-4844-8fc8-13914646bd5f.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/f79d6a35-b3ae-42dd-8755-486dacf9d79b.vsidxBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.futdcache.v2Binary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/.suoBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/DocumentLayout.backup.json
@@ -3,16 +3,48 @@ "WorkspaceRootPath": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\", "Documents": [ { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_inbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_inbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobs\\agvjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobs\\agvjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobspart\\sendagvtask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobspart\\sendagvtask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_core\\enums\\taskenum.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\enums\\taskenum.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_systemservice\\sys_dictionaryservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|solutionrelative:widesea_systemservice\\sys_dictionaryservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_basicservice\\service\\locationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\service\\locationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_emptybound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_emptybound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_agv.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_agv.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{CE0DB91F-5A68-448E-A419-4C26B5039F51}|WIDESEA_ITaskInfoService\\WIDESEA_ITaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_itaskinfoservice\\itaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", @@ -21,6 +53,10 @@ { "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_wmsserver\\controllers\\basic\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\basic\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobspart\\printer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobspart\\printer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_wmsserver\\controllers\\taskinfo\\taskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", @@ -46,37 +82,153 @@ "DocumentGroups": [ { "DockedWidth": 200, "SelectedChildIndex": 1, "SelectedChildIndex": 9, "Children": [ { "$type": "Document", "DocumentIndex": 6, "Title": "Sys_DictionaryService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_DictionaryService.cs", "RelativeDocumentMoniker": "WIDESEA_SystemService\\Sys_DictionaryService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_DictionaryService.cs", "RelativeToolTip": "WIDESEA_SystemService\\Sys_DictionaryService.cs", "ViewState": "AgIAANUBAAAAAAAAAAASwOgBAAAzAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T08:59:29.198Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 7, "Title": "LocationInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Service\\LocationInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_BasicService\\Service\\LocationInfoService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Service\\LocationInfoService.cs", "RelativeToolTip": "WIDESEA_BasicService\\Service\\LocationInfoService.cs", "ViewState": "AgIAACUAAAAAAAAAAIAzwDYAAAAyAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T08:57:28.906Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 5, "Title": "TaskEnum.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Core\\Enums\\TaskEnum.cs", "RelativeDocumentMoniker": "WIDESEA_Core\\Enums\\TaskEnum.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Core\\Enums\\TaskEnum.cs", "RelativeToolTip": "WIDESEA_Core\\Enums\\TaskEnum.cs", "ViewState": "AgIAAJwAAAAAAAAAAAAtwJ8AAAAhAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T08:53:24.925Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 8, "Title": "Program.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs", "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Program.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs", "RelativeToolTip": "WIDESEA_WMSServer\\Program.cs", "ViewState": "AgIAAHIAAAAAAAAAAADgv4UAAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T06:07:53.029Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 10, "Title": "PartialTaskService_AGV.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "ViewState": "AgIAAL8AAAAAAAAAAADgv9IAAAAXAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-24T05:52:57.03Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 3, "Title": "TaskService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\TaskService.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\TaskService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\TaskService.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\TaskService.cs", "ViewState": "AgIAAOcCAAAAAAAAAAAvwO0CAAAtAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T07:13:28.133Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 13, "Title": "Printer.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\Printer.cs", "RelativeDocumentMoniker": "WIDESEA_Tasks\\JobsPart\\Printer.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\Printer.cs", "RelativeToolTip": "WIDESEA_Tasks\\JobsPart\\Printer.cs", "ViewState": "AgIAAAkAAAAAAAAAAAAawI4AAAAnAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T06:51:12.691Z" }, { "$type": "Document", "DocumentIndex": 2, "Title": "SendAgvTask.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "RelativeDocumentMoniker": "WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "RelativeToolTip": "WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "ViewState": "AgIAABcAAAAAAAAAAIA+wBwAAAAUAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T06:49:35.171Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 1, "Title": "AGVjob.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\Jobs\\AGVjob.cs", "RelativeDocumentMoniker": "WIDESEA_Tasks\\Jobs\\AGVjob.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\Jobs\\AGVjob.cs", "RelativeToolTip": "WIDESEA_Tasks\\Jobs\\AGVjob.cs", "ViewState": "AgIAABgAAAAAAAAAAAAAACwAAAAVAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T06:49:30.519Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 0, "Title": "PartialTaskService_Inbound.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "ViewState": "AgIAAN4AAAAAAAAAAAAYwOwAAAAWAAAAAAAAAA==", "ViewState": "AgIAAAoBAAAAAAAAAAAhwB4BAAAbAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T09:17:44.542Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 0, "DocumentIndex": 4, "Title": "PartialTaskService_Outbound.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "ViewState": "AgIAAGICAAAAAAAAAAAmwGgCAAAVAAAAAAAAAA==", "ViewState": "AgIAAIYCAAAAAAAAAADgv50CAAAbAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T09:13:49.163Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 8, "DocumentIndex": 17, "Title": "MaterielInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Base\\MaterielInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_BasicService\\Base\\MaterielInfoService.cs", @@ -84,12 +236,11 @@ "RelativeToolTip": "WIDESEA_BasicService\\Base\\MaterielInfoService.cs", "ViewState": "AgIAABEAAAAAAAAAAADwvw0AAABmAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:40:19.624Z", "EditorCaption": "" "WhenOpened": "2025-03-21T08:40:19.624Z" }, { "$type": "Document", "DocumentIndex": 7, "DocumentIndex": 16, "Title": "IMaterielInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\IMaterielInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_IBasicService\\IMaterielInfoService.cs", @@ -97,25 +248,24 @@ "RelativeToolTip": "WIDESEA_IBasicService\\IMaterielInfoService.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAtwBUAAAAnAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:39:06.751Z", "EditorCaption": "" "WhenOpened": "2025-03-21T08:39:06.751Z" }, { "$type": "Document", "DocumentIndex": 2, "DocumentIndex": 9, "Title": "PartialTaskService_Emptybound.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "ViewState": "AgIAANQAAAAAAAAAAAAiwOgAAAAPAAAAAAAAAA==", "ViewState": "AgIAALkAAAAAAAAAAAAiwMQAAAAVAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:18:53.009Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 6, "DocumentIndex": 15, "Title": "MaterielInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Service\\MaterielInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_BasicService\\Service\\MaterielInfoService.cs", @@ -123,12 +273,11 @@ "RelativeToolTip": "WIDESEA_BasicService\\Service\\MaterielInfoService.cs", "ViewState": "AgIAACAAAAAAAAAAAAASwDQAAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:06:47.798Z", "EditorCaption": "" "WhenOpened": "2025-03-21T08:06:47.798Z" }, { "$type": "Document", "DocumentIndex": 5, "DocumentIndex": 14, "Title": "TaskController.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs", "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs", @@ -136,31 +285,30 @@ "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs", "ViewState": "AgIAAFkAAAAAAAAAAAAgwGwAAAAMAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:05:06.383Z", "EditorCaption": "" "WhenOpened": "2025-03-21T08:05:06.383Z" }, { "$type": "Document", "DocumentIndex": 3, "DocumentIndex": 11, "Title": "ITaskService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITaskService.cs", "RelativeDocumentMoniker": "WIDESEA_ITaskInfoService\\ITaskService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITaskService.cs", "RelativeToolTip": "WIDESEA_ITaskInfoService\\ITaskService.cs", "ViewState": "AgIAAD8AAAAAAAAAAAAAAEkAAAAoAAAAAAAAAA==", "ViewState": "AgIAACkAAAAAAAAAAADgvzwAAAAQAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:04:56.062Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 4, "DocumentIndex": 12, "Title": "MaterielInfoController.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "ViewState": "AgIAAAQAAAAAAAAAAAAEwBYAAAArAAAAAAAAAA==", "ViewState": "AgIAAAsAAAAAAAAAAAAswBMAAAApAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T07:46:15.534Z", "EditorCaption": "" ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/DocumentLayout.json
@@ -3,28 +3,51 @@ "WorkspaceRootPath": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\", "Documents": [ { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobspart\\sendagvtask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobspart\\sendagvtask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobspart\\printer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobspart\\printer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobs\\agvjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobs\\agvjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" "AbsoluteMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\AGVjiaoliaoPDA\\pages\\materielGroup\\OutboundTasks.vue||{40D31677-CBC0-4297-A9EF-89D907823A98}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_inbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_inbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobs\\agvjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobs\\agvjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobspart\\sendagvtask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobspart\\sendagvtask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_outbound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_core\\enums\\taskenum.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\enums\\taskenum.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_systemservice\\sys_dictionaryservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|solutionrelative:widesea_systemservice\\sys_dictionaryservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_basicservice\\service\\locationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\service\\locationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_emptybound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_emptybound.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_taskinfoservice\\partialtaskservice_agv.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\partialtaskservice_agv.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{CE0DB91F-5A68-448E-A419-4C26B5039F51}|WIDESEA_ITaskInfoService\\WIDESEA_ITaskInfoService.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_itaskinfoservice\\itaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", @@ -33,6 +56,10 @@ { "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_wmsserver\\controllers\\basic\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\basic\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_tasks\\jobspart\\printer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{2E6E0F2B-CA88-491F-B633-5637DDC00965}|WIDESEA_Tasks\\WIDESEA_Tasks.csproj|solutionrelative:widesea_tasks\\jobspart\\printer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\khgithub\\agvjiaoliao\\\u4EE3\u7801\u7BA1\u7406\\wms\\widesea_wmsserver\\widesea_wmsserver\\controllers\\taskinfo\\taskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", @@ -58,11 +85,96 @@ "DocumentGroups": [ { "DockedWidth": 200, "SelectedChildIndex": 1, "SelectedChildIndex": 0, "Children": [ { "$type": "Document", "DocumentIndex": 1, "DocumentIndex": 0, "Title": "OutboundTasks.vue", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\AGVjiaoliaoPDA\\pages\\materielGroup\\OutboundTasks.vue", "RelativeDocumentMoniker": "..\\..\\AGVjiaoliaoPDA\\pages\\materielGroup\\OutboundTasks.vue", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\AGVjiaoliaoPDA\\pages\\materielGroup\\OutboundTasks.vue", "RelativeToolTip": "..\\..\\AGVjiaoliaoPDA\\pages\\materielGroup\\OutboundTasks.vue", "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003491|", "WhenOpened": "2025-03-25T10:37:13.832Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 7, "Title": "Sys_DictionaryService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_DictionaryService.cs", "RelativeDocumentMoniker": "WIDESEA_SystemService\\Sys_DictionaryService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_DictionaryService.cs", "RelativeToolTip": "WIDESEA_SystemService\\Sys_DictionaryService.cs", "ViewState": "AgIAANUBAAAAAAAAAAASwOgBAAAzAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T08:59:29.198Z" }, { "$type": "Document", "DocumentIndex": 8, "Title": "LocationInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Service\\LocationInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_BasicService\\Service\\LocationInfoService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Service\\LocationInfoService.cs", "RelativeToolTip": "WIDESEA_BasicService\\Service\\LocationInfoService.cs", "ViewState": "AgIAACUAAAAAAAAAAIAzwDYAAAAyAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T08:57:28.906Z" }, { "$type": "Document", "DocumentIndex": 6, "Title": "TaskEnum.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Core\\Enums\\TaskEnum.cs", "RelativeDocumentMoniker": "WIDESEA_Core\\Enums\\TaskEnum.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Core\\Enums\\TaskEnum.cs", "RelativeToolTip": "WIDESEA_Core\\Enums\\TaskEnum.cs", "ViewState": "AgIAAJwAAAAAAAAAAAAtwJ8AAAAhAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T08:53:24.925Z" }, { "$type": "Document", "DocumentIndex": 9, "Title": "Program.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs", "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Program.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs", "RelativeToolTip": "WIDESEA_WMSServer\\Program.cs", "ViewState": "AgIAAHIAAAAAAAAAAADgv4UAAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-25T06:07:53.029Z" }, { "$type": "Document", "DocumentIndex": 11, "Title": "PartialTaskService_AGV.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_AGV.cs", "ViewState": "AgIAAL8AAAAAAAAAAADgv9IAAAAXAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-24T05:52:57.03Z" }, { "$type": "Document", "DocumentIndex": 4, "Title": "TaskService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\TaskService.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\TaskService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\TaskService.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\TaskService.cs", "ViewState": "AgIAAOcCAAAAAAAAAAAvwO0CAAAtAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T07:13:28.133Z" }, { "$type": "Document", "DocumentIndex": 14, "Title": "Printer.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\Printer.cs", "RelativeDocumentMoniker": "WIDESEA_Tasks\\JobsPart\\Printer.cs", @@ -70,21 +182,19 @@ "RelativeToolTip": "WIDESEA_Tasks\\JobsPart\\Printer.cs", "ViewState": "AgIAAAkAAAAAAAAAAAAawI4AAAAnAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T06:51:12.691Z", "EditorCaption": "" "WhenOpened": "2025-03-22T06:51:12.691Z" }, { "$type": "Document", "DocumentIndex": 0, "DocumentIndex": 3, "Title": "SendAgvTask.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "RelativeDocumentMoniker": "WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "RelativeToolTip": "WIDESEA_Tasks\\JobsPart\\SendAgvTask.cs", "ViewState": "AgIAACsAAAAAAAAAAAAAwEgAAAApAAAAAAAAAA==", "ViewState": "AgIAABcAAAAAAAAAAIA+wBwAAAAUAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T06:49:35.171Z", "EditorCaption": "" "WhenOpened": "2025-03-22T06:49:35.171Z" }, { "$type": "Document", @@ -94,39 +204,38 @@ "RelativeDocumentMoniker": "WIDESEA_Tasks\\Jobs\\AGVjob.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_Tasks\\Jobs\\AGVjob.cs", "RelativeToolTip": "WIDESEA_Tasks\\Jobs\\AGVjob.cs", "ViewState": "AgIAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", "ViewState": "AgIAABgAAAAAAAAAAAAAACwAAAAVAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-22T06:49:30.519Z", "EditorCaption": "" "WhenOpened": "2025-03-22T06:49:30.519Z" }, { "$type": "Document", "DocumentIndex": 4, "DocumentIndex": 1, "Title": "PartialTaskService_Inbound.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_Inbound.cs", "ViewState": "AgIAAN4AAAAAAAAAAAAYwOwAAAAWAAAAAAAAAA==", "ViewState": "AgIAAAoBAAAAAAAAAAAhwB4BAAAbAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T09:17:44.542Z" "WhenOpened": "2025-03-21T09:17:44.542Z", "EditorCaption": "" }, { "$type": "Document", "DocumentIndex": 3, "DocumentIndex": 5, "Title": "PartialTaskService_Outbound.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_Outbound.cs", "ViewState": "AgIAAGICAAAAAAAAAAAmwGgCAAAVAAAAAAAAAA==", "ViewState": "AgIAAIYCAAAAAAAAAADgv50CAAAbAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T09:13:49.163Z", "EditorCaption": "" "WhenOpened": "2025-03-21T09:13:49.163Z" }, { "$type": "Document", "DocumentIndex": 11, "DocumentIndex": 18, "Title": "MaterielInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Base\\MaterielInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_BasicService\\Base\\MaterielInfoService.cs", @@ -138,7 +247,7 @@ }, { "$type": "Document", "DocumentIndex": 10, "DocumentIndex": 17, "Title": "IMaterielInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\IMaterielInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_IBasicService\\IMaterielInfoService.cs", @@ -150,19 +259,19 @@ }, { "$type": "Document", "DocumentIndex": 5, "DocumentIndex": 10, "Title": "PartialTaskService_Emptybound.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "RelativeToolTip": "WIDESEA_TaskInfoService\\PartialTaskService_Emptybound.cs", "ViewState": "AgIAANQAAAAAAAAAAAAiwOgAAAAPAAAAAAAAAA==", "ViewState": "AgIAALkAAAAAAAAAAAAiwMQAAAAVAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:18:53.009Z" }, { "$type": "Document", "DocumentIndex": 9, "DocumentIndex": 16, "Title": "MaterielInfoService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_BasicService\\Service\\MaterielInfoService.cs", "RelativeDocumentMoniker": "WIDESEA_BasicService\\Service\\MaterielInfoService.cs", @@ -174,7 +283,7 @@ }, { "$type": "Document", "DocumentIndex": 8, "DocumentIndex": 15, "Title": "TaskController.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs", "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs", @@ -186,25 +295,25 @@ }, { "$type": "Document", "DocumentIndex": 6, "DocumentIndex": 12, "Title": "ITaskService.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITaskService.cs", "RelativeDocumentMoniker": "WIDESEA_ITaskInfoService\\ITaskService.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITaskService.cs", "RelativeToolTip": "WIDESEA_ITaskInfoService\\ITaskService.cs", "ViewState": "AgIAAD8AAAAAAAAAAAAAAEkAAAAoAAAAAAAAAA==", "ViewState": "AgIAACkAAAAAAAAAAADgvzwAAAAQAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T08:04:56.062Z" }, { "$type": "Document", "DocumentIndex": 7, "DocumentIndex": 13, "Title": "MaterielInfoController.cs", "DocumentMoniker": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "ToolTip": "E:\\KHGITHUB\\AGVJiaoLiao\\\u4EE3\u7801\u7BA1\u7406\\WMS\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs", "ViewState": "AgIAAAQAAAAAAAAAAAAEwBYAAAArAAAAAAAAAA==", "ViewState": "AgIAAAsAAAAAAAAAAAAswBMAAAApAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-03-21T07:46:15.534Z" } ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/v17/fileList.binBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_BasicRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_BasicRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_BasicRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 378f5823af762648b7e3a9deb34510b2b1e5aeab3296d00a01aa0ef4fa1df3bb 638e8258c67302eab40b7846d8668b99a986f86e3f48e4df78774e499ad34dab ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/ref/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Debug/net6.0/refint/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_BasicRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_BasicRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_BasicRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 881e6f6c03455553683f0cdf5ec41a61ca59ec5e0bad9aed41feb7aceabba122 8570ab352c31d2fabbbc198301cac29d096e2ab226a17c0119aecdf163668e8e ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/ref/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicRepository/obj/Release/net6.0/refint/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Service/LocationInfoService.cs
@@ -52,10 +52,10 @@ throw new Exception("åºå被ç¦ç¨ï¼ä¸å¯å ¥åº!"); } } if (inboundType == TaskTypeEnum.PalletInbound.ObjToInt())//空çå ¥åºåé é»è¾ { return EmptyAssignLocation(roadwayInfo.RoadwayNo); } //if (inboundType == TaskTypeEnum.PalletInbound.ObjToInt())//空çå ¥åºåé é»è¾ //{ // return EmptyAssignLocation(roadwayInfo.RoadwayNo); //} else if (inboundType == TaskTypeEnum.Inbound.ObjToInt()) { return StoredAssignLocation(roadwayInfo.RoadwayNo); ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_BasicService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_BasicService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_BasicService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 1dd2a80a60163eca4c840a17b7264365de3c144a98ff2857396558c22d253ff5 1f784bf996cdedd5fa8a7ac6f00759922eaea5ca262e609cc2ca3f962ffb7b6a ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/ref/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Debug/net6.0/refint/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_BasicService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_BasicService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_BasicService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.AssemblyInfoInputs.cache
@@ -1 +1 @@ c802367037564ec2c17e125050c96e6a93a58e7349214715034e9ae485014980 2145624cc6f6e8a9a16cfbec0d4d35e220791622c38b8686ca1be36c3d2dc505 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/ref/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/obj/Release/net6.0/refint/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Common/obj/Debug/net6.0/WIDESEA_Common.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_Common")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Common")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Common")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Common/obj/Debug/net6.0/WIDESEA_Common.AssemblyInfoInputs.cache
@@ -1 +1 @@ 1982a6853ff72e7e59d7a725affac40d38bba30b733de6d192e3e7744f215d36 f92f56a51439057d04c5d22a36adc821a67fd7b35bdc11eebcb7ef0bf8fc6b6a ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Common/obj/Release/net6.0/WIDESEA_Common.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_Common")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Common")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Common")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Common/obj/Release/net6.0/WIDESEA_Common.AssemblyInfoInputs.cache
@@ -1 +1 @@ 6c7af5cfc43756458665bad4792d2a2c5ec7c2ed959fcf0ce2ce7d557c6fab22 edcd581bebee5623bf6cf1dbeaff4c0df042f3920deb054c01e604d802d93ecf ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/Enums/TaskEnum.cs
@@ -22,88 +22,10 @@ Outbound = 100, /// <summary> /// çç¹åºåº /// </summary> [Description("çç¹åºåº")] OutInventory = 101, /// <summary> /// 忣åºåº /// </summary> [Description("忣åºåº")] OutPick = 102, /// <summary> /// è´¨æ£åºåº /// </summary> [Description("è´¨æ£åºåº")] OutQuality = 103, /// <summary> /// åºç©º /// </summary> [Description("åºç©º")] PalletOutbound = 104, /// <summary> /// 补空 /// </summary> [Description("补空")] PalletFillOutbound = 105, /// <summary> /// å ¥åº /// </summary> [Description("å ¥åº")] Inbound = 200, /// <summary> /// çç¹å ¥åº /// </summary> [Description("çç¹å ¥åº")] InInventory = 201, /// <summary> /// åæ£å ¥åº /// </summary> [Description("åæ£å ¥åº")] InPick = 202, /// <summary> /// è´¨æ£å ¥åº /// </summary> [Description("è´¨æ£å ¥åº")] InQuality = 203, /// <summary> /// å ¥ç©º /// </summary> [Description("å ¥ç©º")] PalletInbound = 204, /// <summary> /// å空 /// </summary> [Description("å空")] PalletReturnInbound = 205, /// <summary> /// ç§»åº /// </summary> [Description("ç§»åº")] Relocation = 300, /// <summary> /// åºå ç§»åº /// </summary> [Description("åºå ç§»åº")] RelocationIn = 301, /// <summary> /// åºå¤ç§»åº /// </summary> [Description("åºå¤ç§»åº")] RelocationOut = 302, [Description("AGVæ¬è¿")] AGVCarry = 500, ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.AssemblyInfo.cs
@@ -15,7 +15,7 @@ [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyDescriptionAttribute("dddddddddddddddddddddddddddddddddddd")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Core")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.AssemblyInfoInputs.cache
@@ -1 +1 @@ 42e0eddff17e91f0c0b580a445a43ef137dfb1e9e7b0bf9d6c279911f8a547b8 0a19a4c8533eac8b2c22786cc1cfa45701ff726c13416a2bf2ccad64c83d8ce6 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/ref/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Debug/net6.0/refint/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/WIDESEA_Core.AssemblyInfo.cs
@@ -15,7 +15,7 @@ [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyDescriptionAttribute("dddddddddddddddddddddddddddddddddddd")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Core")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/WIDESEA_Core.AssemblyInfoInputs.cache
@@ -1 +1 @@ f2bd9a67727e322d06507c2d14e7edbb1f08b94fe791386ff6c4b7399c4e9c93 568e234461ec1756336fac60f2a177103a82fb1f3cc8099b86f4e2e0693c2a4e ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/ref/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Core/obj/Release/net6.0/refint/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_DTO")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_DTO")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_DTO")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.AssemblyInfoInputs.cache
@@ -1 +1 @@ 86cc586f92ba615c04dc6e44326ce50b7153d2cb39ee3a852f3b8891978311d7 d60f9e23cc6113b519924acfa9ca76610790ee795a6353e0b7a1f1a24e80b2a2 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/ref/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Debug/net6.0/refint/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_DTO")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_DTO")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_DTO")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.AssemblyInfoInputs.cache
@@ -1 +1 @@ 009564b3e15fd68d5d31b505ea8fd914723eddaf2f676860b61067c4e5c1b25c b02fe75226bd662ab4bf7e72c9a530fef5d03643faa68b58c608e68b4ecd6cb6 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/ref/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_DTO/obj/Release/net6.0/refint/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IBasicRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IBasicRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IBasicRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 3f53c950c8c79d64d2d82e65316cc79f631fbbc78c10a45dff7593b86ac91bbd 51591a43a81fb522dc9c65b0320abaf3635935ee01e0b08433173bbd2c4fbe12 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/ref/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Debug/net6.0/refint/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IBasicRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IBasicRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IBasicRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 68bde244d6212f238695fa4e35802365656de76fe16b68afd6ed425ec7d60034 df51a2d3e7ff8b92f284b26336e8002db58d39d200bb2918c3f3c54d7a43a40e ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/ref/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicRepository/obj/Release/net6.0/refint/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IBasicService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IBasicService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IBasicService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 88d95b23d90a32f41e80d3a5789a0125540140c189c5d59232e78d77ca4c4e0e 64f14b9ec0ed28790710299d50c89536c955fdd72bf380246e7c2642a7da892c ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/ref/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Debug/net6.0/refint/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IBasicService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IBasicService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IBasicService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 6cd328c65445119a6f4888194d3894edceb5ff1d3ec8665d4393c1090c9b6146 a9607809338b5d18202110ed6a0b53b3c2f4c0a9287cf5bcaf1ffd5af8d140ae ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/ref/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/obj/Release/net6.0/refint/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IInboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IInboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IInboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 5510e2394c5fe2ca9486da37e7644e8c9db6c039d47624ec242b7a955e3b09bc 6e8ae20d615a401b3a539d180ac41fc3dac9e02a58f48638a2fc5eb0322eb19e ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/ref/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Debug/net6.0/refint/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IInboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IInboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IInboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 649fffff391bfcf3e14d81344c8c63f629e90d460ab5681394b9ccb186285722 bda0533a14afdce7907de72778dc4816a000818f0c52b13eb6a96e60f8df8bdd ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/ref/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundRepository/obj/Release/net6.0/refint/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IInboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IInboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IInboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 4f4ec55f080e3b6d6d1e9e57c295ef5c6a0ad9e547d7ae7042b08c5f2747cfce 8e0e3c513de061ef701c81197a23ea577c833ac00f2cb58c707a782110f1b1f2 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/ref/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Debug/net6.0/refint/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IInboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IInboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IInboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 887268544bf1bc95b225868259b5885a8d962be191b3f5df2fcda54a5ef9f415 64a6f00e25a508d66dc6bf77afd1fb33c88731e0a370358ba14bf04fbba3dad1 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/ref/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IInboundService/obj/Release/net6.0/refint/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IOutboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IOutboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IOutboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 3ff7f525e35aafec7e265de90d1ea0a7bf90952927aef5ead48d86ac80da9a8b f214cf0e676c986933273ba09f7bc12e4f077a667bdaeca3fadc9b4c55e84012 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/ref/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Debug/net6.0/refint/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IOutboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IOutboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IOutboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 446a7809cf575f8eb8fe34182ed35735b65cbddf8dbb51f59a5f12e750614a96 d8adb43060df73c2e31f6fe99cce75eab678de0e615728ce5517cafb94a0bddb ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/ref/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundRepository/obj/Release/net6.0/refint/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IOutboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IOutboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IOutboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ b9e062debd5936a2d23ca88d71d365c9e2d8dec5c669ca64ded881effe0045b5 fd496953d8b326b766545aedf4b2070b86f88399fb1cc6fe08f8b916c1c8c242 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/ref/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Debug/net6.0/refint/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IOutboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IOutboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IOutboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 371c7b1ce0243778f96045ba2c469f84b14db611a27aac2610c29f5255a4d1c8 e369b35b61183ba5a331c51a7df939b407bfb28677f47e437d060d1a40ffe14d ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/ref/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/obj/Release/net6.0/refint/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IRecordRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IRecordRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IRecordRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 831a1ccc9a3f1e156161d8d5aa1f77a765eea39c05665fe218f2ef66b6664169 a69219a2a1eddf3b189d295fa4f0df13cbda378a62380eac712e0af27189acfd ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/ref/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Debug/net6.0/refint/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IRecordRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IRecordRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IRecordRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 0a897a1e5d124a5690738151add9c88df411f2108a25dceff05bc782a5c4e46e 724532e870e1f4f172ac6d91d2c45e5d4a9492f7386e88976a0f79ca379e9170 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/ref/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordRepository/obj/Release/net6.0/refint/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IRecordService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IRecordService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IRecordService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.AssemblyInfoInputs.cache
@@ -1 +1 @@ e86464d763f0d8d20f76d8cc49c009efea0bd543f478c8ac862edfe7f844a574 8e97d22ed4cc544ad6fe6d9b1aa3dadfc0ff05bdf59b02ec0f1d4b8dc031bf75 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/ref/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Debug/net6.0/refint/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IRecordService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IRecordService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IRecordService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.AssemblyInfoInputs.cache
@@ -1 +1 @@ b64e82ed144c388503025bd0123fc93ff5b327c0ab6bc539c0d7c2db28487ac4 cdf4c6ecf190ccc294d71c5c2bb40a0ef7699d3fc7a6250fb23ba4f897675dd6 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/ref/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IRecordService/obj/Release/net6.0/refint/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IStockRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IStockRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IStockRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 2450e145f2893d2802c9b4f566d4863e0cc42422e08f64c835279078a37d5054 77b2cd7587a9bd37df2093992b4678ed4f1f40e7a6235fc4a1dcdcdee7d09def ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/ref/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Debug/net6.0/refint/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IStockRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IStockRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IStockRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 2f4492f3a7ee71b64423f948ec538e481cfc0559ac2f33f8f80708d20abfa29e a234bd5be3387b020c5b9c50191c65573eb7c33d371b37343d7e180f9a40b158 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/ref/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockRepository/obj/Release/net6.0/refint/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IStockService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IStockService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IStockService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 5dbce2f162dad82aff586fb7461f7fe8389bde71b36fe4cf94a1a6acb911df84 7c4af52235a760657f19cb585638c4b3064d888b46f0301894a8228c501e2e03 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/ref/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Debug/net6.0/refint/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_IStockService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_IStockService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_IStockService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 6da3d32cb8cbaba74709dd13996796a8edddab61f5d8260d18e9575b9b9e0185 d8ba7c72d91fda4f3964e163b1408c8060859e6e5820c19abdb901848692dd1d ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/ref/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/obj/Release/net6.0/refint/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ISystemRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ISystemRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ISystemRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 83aa593abeed50d9d2f2d182a8a6919e964aafeec007bb6e3c98efb59572fb37 2a41dd2927da8739e80e9625ef00d48705c9efa67887c9c2411e68f3acfe31c2 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/ref/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Debug/net6.0/refint/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ISystemRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ISystemRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ISystemRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 8628d678dcda390dc705465f46bdc90715c30d5f1147938972ef5253d989d9b0 f56ef6f759906d7cff1ccf5118b1ce2401259489e489de8f722d6915f9f2462c ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/ref/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemRepository/obj/Release/net6.0/refint/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ISystemService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ISystemService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ISystemService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 33e7a0c57e4d95c408e4a26cd0563c943fb72146aa9bdd893703cfea4f95b154 7346ae93b04d94b73ee7da0f3a281cf9bdc9e496f8ef02cff25676555b658cd0 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/ref/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Debug/net6.0/refint/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ISystemService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ISystemService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ISystemService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 7c7de6d4720a18fd0c797e6575a33dcb3e1819142752f06554488c3e0a417411 3046dd5309f65233bce152ea3979d56e3bf4a478deb801ac86367b199156db67 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/ref/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/obj/Release/net6.0/refint/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ITaskInfoRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ITaskInfoRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ITaskInfoRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 104763e7b853a77d1f948d087e000b2c5e34528ac219831697afb937b766c498 ba206dfdd482bcb0cbbb3a8e1faf623cf466047a8d4b47a3e1ccb2e810d579e4 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/ref/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Debug/net6.0/refint/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ITaskInfoRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ITaskInfoRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ITaskInfoRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 51e033ef407162833fbe6f4cb87ba0bc053ffda3c21eddb1cbe54f9bb6eec124 c1767782f178eb084446baadd9eec149a2b29219d2e04dcabefe34c879c19535 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/ref/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoRepository/obj/Release/net6.0/refint/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ITaskInfoService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ITaskInfoService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ITaskInfoService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.AssemblyInfoInputs.cache
@@ -1 +1 @@ ebc9aa3cac0d21ce14eda3ba4bf6d4c0d3e7e3a42f7b30fb3a8837ace176d8d0 f4741b5e38c18b13c7e619b4aeb9ad8118c7dcc8376c14c08d53e8f7e29d1d96 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/ref/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Debug/net6.0/refint/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_ITaskInfoService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_ITaskInfoService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_ITaskInfoService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 173e9a2eb64b67e42bafdc6f8bbd6fbda12afffa36cb8fdaedacfe19bdb596fe b4e1ed1536bbbee8d8a0ab6dd53598acda70c2967bc624e3df474c3cb441f12c ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/ref/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/obj/Release/net6.0/refint/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_InboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_InboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_InboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 02a5e81eb75fb71b32a8bd8e3b47cd9304955f78065fef316dd7e9bd52c32afd 3a06ea8744a18fa39443dc15a74109276d44be918b8e32f0dfd0eba996bb98b5 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/ref/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Debug/net6.0/refint/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_InboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_InboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_InboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ f486b7eed8931a940c2b4f12bdfb63e95a1fb924f8187739dc9980c214737c8b 3e75dd0402f1572ab4e91b8c29851975c69b6f960eae33176846ac4e543babb7 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/ref/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundRepository/obj/Release/net6.0/refint/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_InboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_InboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_InboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ b0fde00c230cf40e96ef4ff96c34415e26465b1a97b39da02e4d103bedddb20b a967cd92244afd0ca381a4e3295e41a24e3df836c1354fb4af3ce276dad1ff49 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/ref/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Debug/net6.0/refint/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_InboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_InboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_InboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 98489c567f3acfd60cfb9aa50b046c84a8a2ac571a9f060590c1377ed80e1f3f 7c47b1c16572459d9da0fa9fa3b2372a7fcf76375bd2389a734ff7d674a85707 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/ref/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/obj/Release/net6.0/refint/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_Model")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Model")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Model")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.AssemblyInfoInputs.cache
@@ -1 +1 @@ 62e16228f9d67ba90b666294d1a00f33e9751dd8e2060e84084fe2f269b0f2e1 318005281fdd81ecb11074cce9b7749be0838da91f0983256177f4635c56f733 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/ref/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Debug/net6.0/refint/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_Model")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Model")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Model")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.AssemblyInfoInputs.cache
@@ -1 +1 @@ a6afa45a6eaf910a198656daa98a08ccb7f46582138aa374e6001d94616eac58 448dcec31f4c62985937ab0cbad2a2998c86f388faffb50bacf5232921f906ad ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/ref/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/obj/Release/net6.0/refint/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_OutboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_OutboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_OutboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ c8caae9528c10565b4c683f223a535b5d3875ba355d6e6b653119bb8673489cd c0cbe321125cb5ad66f6ffde96ff7d8114617553af3ed7c194114860b3bb1157 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/ref/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Debug/net6.0/refint/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_OutboundRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_OutboundRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_OutboundRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 6dd74a12b70325025f5c5a81368076eab95963cdf5190e5d9a685e08c9c90ff5 ff9c32b43cfbc56ced094cc4de4f0ec73f644bd7e610b2bdac8fb396fc638181 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/ref/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundRepository/obj/Release/net6.0/refint/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_OutboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_OutboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_OutboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 299e24438b75e778cf83be28bf76b5ba48637abc44d6b421cc9912164d8a21f4 dd555466aa12b48dc324a628ee7285de7004b4198eec664bcbce099519517c82 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/ref/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Debug/net6.0/refint/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_OutboundService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_OutboundService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_OutboundService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.AssemblyInfoInputs.cache
@@ -1 +1 @@ adbe658ca1c777d3ee19680412ba5ff26dcafe94ec4933ebfa2cec84266be7fa 3636bf579dbc382a30a1ca08572168253e4c469c0d5e50c77f8e02e8c9c31425 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/ref/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/obj/Release/net6.0/refint/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_RecordRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_RecordRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_RecordRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ a467974d0a96702f881fa3d84900ce083534d0ba84ef7f74f64765ee8470a29f c8e4fd89e7b5253b7bad9562b864c3912011ebe9c409aee009e17165dd49b061 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/ref/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Debug/net6.0/refint/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_RecordRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_RecordRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_RecordRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 79ed2a99bce5453930ecdd0f684500a6f47d04be4777effd9ec4bf76dac1748e f8ed4addaf71fdf9a1b7e1d24e3582dce5355eccd25c6afa9fdb34ae9028578c ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/ref/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordRepository/obj/Release/net6.0/refint/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Debug/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/bin/Release/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_RecordService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_RecordService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_RecordService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 095b760dda60c7c87c56cbb0c547a1eded2002ba5a81500c632c574214b6b801 6af117e869547d7272c3b9ce6d58f5475ca1b0c6194a2d038da370fc43d5b52b ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/ref/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Debug/net6.0/refint/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_RecordService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_RecordService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_RecordService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 76bb2ac4578ed401d81fb31ad7030556d50768892a9d073e164fd99a3c9ebb40 ad7e800af0a88d3b369909e15de31c4c55fd84b23a89af5074af88f56a0cc24d ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/ref/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_RecordService/obj/Release/net6.0/refint/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_StockRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_StockRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_StockRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ efe9d4504f0e2a3bc4e182586faa375456443f89f4814b99b3a49e590444346e 9c0e10e34039f62a47efab33d2c169553ae8feddb8cb6e4bf47a88d8d9f407a9 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/ref/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Debug/net6.0/refint/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_StockRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_StockRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_StockRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ c164f26f27a4eb85d8cc0a1f1e706bea026ce94f33abd8534512c08d48391d52 3d557b6366213b2d0acbc72adcfe225da1ba99aada97132490be13bca12e808a ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/ref/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/obj/Release/net6.0/refint/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Debug/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/bin/Release/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_StockService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_StockService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_StockService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.AssemblyInfoInputs.cache
@@ -1 +1 @@ df8933311fc1ee0627613dbdcc6a51c55fb9ee0215ec56136e7f84f7519919f2 936666bd5cc56602404735c290ac9e659ffd5e720e97e4b83d660d108414593a ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/ref/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Debug/net6.0/refint/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_StockService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_StockService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_StockService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.AssemblyInfoInputs.cache
@@ -1 +1 @@ c35a24d3ed30db980d1b321fbef638b74c60dbb28574d1f71b3f912ad8efbc34 71395015a77593c9edfdcaecc294e0f4792ae1e8d17b5f20c5784fdf2ffe9414 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/ref/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_StockService/obj/Release/net6.0/refint/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_SystemRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_SystemRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_SystemRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ ad6f08c16fe3a3a6d7802084731a8df663900d5baf5540152436902d8904e87a ba5282fa311dd1b5cb01f16758ef5a5fa1608c614d79136ef6a82519148a69bd ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/ref/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Debug/net6.0/refint/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_SystemRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_SystemRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_SystemRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ f40c841dec8ec18d6238815152ff08c5ea7d3b1149e8c061672351db6d50d64f 841d3b7fd6fb5eff691cc508657449c1bfb2021f69e758b9cb8a1fe74d518f73 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/ref/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemRepository/obj/Release/net6.0/refint/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Debug/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/bin/Release/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_SystemService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_SystemService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_SystemService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 5e396ced1b7d6304f8e512b0d580f263d2eaf019aee8892679877212227b15d0 42c908d2daacf561fc0eaac427a79ed589b39d68fb09c85fb28a898f260510d6 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/ref/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Debug/net6.0/refint/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_SystemService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_SystemService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_SystemService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 2acae480cfff218a58d8640134e01b3b5cb91baab30d3724c95c2efc9e4c5bdc 32269b2e110093ebe66f095171ca22b2674cadf2c0ebc1bf103f8d593fe48d97 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/ref/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_SystemService/obj/Release/net6.0/refint/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_TaskInfoRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_TaskInfoRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_TaskInfoRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 285ec141323e22ef2d1dcbaf97bb22bd0913da1b80efa554cdd6f281a05adf1e 22ae40ee62ba9a80e033f398da836767b7425f5c75abc3d6f537d33e76c91df7 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/ref/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Debug/net6.0/refint/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_TaskInfoRepository")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_TaskInfoRepository")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_TaskInfoRepository")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.AssemblyInfoInputs.cache
@@ -1 +1 @@ 058930e643b593f8b3155269a947a8265d21bae736db71f2d1030c5c92996176 089986cfc730b96a9e53bf8864545bc52b2628397f5b1a998c254f851e32fdbb ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/ref/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoRepository/obj/Release/net6.0/refint/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_Emptybound.cs
@@ -33,7 +33,7 @@ { return content = WebResponseContent.Instance.Error($"æ·»å ä»»å¡å¼å¸¸,é误信æ¯:{"æ«ç æ°æ®ä¸è½ä¸ºç©º"}"); } Dt_CachePoint endCachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.PointCode.Contains("空æåºHCK") && x.PointStatus == LocationStatusEnum.Free.ObjToInt()); Dt_CachePoint endCachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.PointCode.Contains("空æRHCK") && x.PointStatus == LocationStatusEnum.Free.ObjToInt()); if (endCachePoint == null) { return content = WebResponseContent.Instance.Error($"æ·»å ä»»å¡å¼å¸¸,é误信æ¯:{"æªæ¾å°ç©ºæåºåºåºä½å¯ç¨ç¼åæ¶"}"); @@ -103,7 +103,7 @@ { return content = WebResponseContent.Instance.Error($"æ·»å ä»»å¡å¼å¸¸,é误信æ¯:{"æ«ç æ°æ®ä¸è½ä¸ºç©º"}"); } Dt_CachePoint endCachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.PointCode.Contains("空æåºHCK") && x.PointStatus == LocationStatusEnum.Free.ObjToInt()); Dt_CachePoint endCachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.PointCode.Contains("空æCHCK") && x.PointStatus == LocationStatusEnum.Free.ObjToInt()); if (endCachePoint == null) { return content = WebResponseContent.Instance.Error($"æ·»å ä»»å¡å¼å¸¸,é误信æ¯:{"æªæ¾å°ç©ºæåºå ¥åºä½å¯ç¨ç¼åæ¶"}"); @@ -172,7 +172,7 @@ { return content = WebResponseContent.Instance.Error($"æ·»å ä»»å¡å¼å¸¸,é误信æ¯:{"æ«ç æ°æ®ä¸è½ä¸ºç©º"}"); } Dt_CachePoint endCachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.Materialtype == PalletCode && x.PointName == toaddress && x.PointStatus == LocationStatusEnum.Free.ObjToInt()); Dt_CachePoint endCachePoint = _basicService.CachePointService.Repository.QueryFirst(x =>x.PointName == toaddress && x.PointStatus == LocationStatusEnum.Free.ObjToInt()); if (endCachePoint == null) { return content = WebResponseContent.Instance.Error($"æ·»å ä»»å¡å¼å¸¸,é误信æ¯:{"æªæ¾å°ç»ç¹åºåå¯ç¨ç¼åæ¶"}"); ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_Inbound.cs
@@ -57,7 +57,7 @@ { (bool, string) result = CheckRequestInbound(stationCode, palletCode, false); if (!result.Item1) return content = WebResponseContent.Instance.Error(result.Item2); content = AssignLocUpdateData(stationCode, TaskTypeEnum.PalletInbound.ObjToInt(), palletCode, false); //content = AssignLocUpdateData(stationCode, TaskTypeEnum.PalletInbound.ObjToInt(), palletCode, false); } catch (Exception ex) { ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_Outbound.cs
@@ -361,7 +361,7 @@ SourceAddress = location.LocationCode, TargetAddress = locationInfos.LocationCode, TaskStatus = InTaskStatusEnum.RelocationNew.ObjToInt(), TaskType = TaskTypeEnum.Relocation.ObjToInt(), //TaskType = TaskTypeEnum.Relocation.ObjToInt(), Depth = location.Depth, TaskNum = BaseDal.GetTaskNum(nameof(SequenceEnum.SeqTaskNum)) }; @@ -473,7 +473,7 @@ SourceAddress = stockInfo.LocationCode, TargetAddress = endStation, TaskStatus = OutTaskStatusEnum.OutNew.ObjToInt(), TaskType = TaskTypeEnum.PalletOutbound.ObjToInt(), //TaskType = TaskTypeEnum.PalletOutbound.ObjToInt(), Depth = locationInfo.Depth, TaskNum = BaseDal.GetTaskNum(nameof(SequenceEnum.SeqTaskNum)) }; ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs
@@ -205,18 +205,18 @@ { return WebResponseContent.Instance.Error("æªæ¾å°ä»»å¡ä¿¡æ¯"); } if (task.TaskType == TaskTypeEnum.Outbound.ObjToInt() || task.TaskType == TaskTypeEnum.PalletOutbound.ObjToInt()) if (task.TaskType == TaskTypeEnum.Outbound.ObjToInt()) { task.TaskStatus = OutTaskStatusEnum.SC_OutExecuting.ObjToInt(); } else if (task.TaskType == TaskTypeEnum.Inbound.ObjToInt() || task.TaskType == TaskTypeEnum.PalletInbound.ObjToInt()) else if (task.TaskType == TaskTypeEnum.Inbound.ObjToInt() ) { task.TaskStatus = InTaskStatusEnum.SC_InExecuting.ObjToInt(); } else if (task.TaskType == TaskTypeEnum.Relocation.ObjToInt()) { task.TaskStatus = InTaskStatusEnum.RelocationExecuting.ObjToInt(); } //else if (task.TaskType == TaskTypeEnum.Relocation.ObjToInt()) //{ // task.TaskStatus = InTaskStatusEnum.RelocationExecuting.ObjToInt(); //} else { throw new Exception($"ä»»å¡ç±»åé误,æªæ¾å°è¯¥ä»»å¡ç±»å,ä»»å¡å·:ã{task.TaskNum}ã,ä»»å¡ç±»å:ã{task.TaskType}ã"); ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/bin/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_TaskInfoService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_TaskInfoService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_TaskInfoService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 6f3c09ac42dc79ffddeab7cf496ec9a4301e7d55f82013dda6f38c89b89146f7 2d456bc60328cf4167c86a080cc84e83e6b5cc1df72111f3f065cc9b801998c1 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/ref/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Debug/net6.0/refint/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_TaskInfoService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_TaskInfoService")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_TaskInfoService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.AssemblyInfoInputs.cache
@@ -1 +1 @@ 96820d5ebc5fb9ff6ef0dbf788f86dc2f9ae8d41f1ed58fc0b8d74c758d95d89 d51a99e538de603a839b3f31c9babf68ce62f0c441f647cd1ba880ab2f2342ed ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/ref/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/obj/Release/net6.0/refint/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/Jobs/AGVjob.cs
@@ -39,8 +39,8 @@ public Task Execute(IJobExecutionContext context) { WriteLog.Info($"ç³»ç»è¿è¡").Write($"æå", $"ç³»ç»è¿è¡"); //SendAgvTask(); //MqttExample(); SendAgvTask(); MqttExample(); //Printer(); //Main(); return Task.CompletedTask; ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/JobsPart/SendAgvTask.cs
@@ -30,6 +30,7 @@ { try { Console.WriteLine("å¼å§ " + DateTime.Now); var agvtask = _taskService.GetTasks(); if (agvtask != null) { ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Debug/net6.0/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/bin/Release/net6.0/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/WIDESEA_Tasks.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_Tasks")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Tasks")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Tasks")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/WIDESEA_Tasks.AssemblyInfoInputs.cache
@@ -1 +1 @@ ddbf86ee8eee24098d1ad230f942bca6123f799b613b128baad16365defa14ed ffca93812628f337d61cc9b484bcbe1815d48485fd6e87427ab3f910d63c0432 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/WIDESEA_Tasks.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/ref/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Debug/net6.0/refint/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/WIDESEA_Tasks.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_Tasks")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_Tasks")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_Tasks")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/WIDESEA_Tasks.AssemblyInfoInputs.cache
@@ -1 +1 @@ 72a8e60fa325e5623011e2bc951302f267af43560e00923946a92cf8ab91991a d4a8fdfe6e1e81e740ec709fb1308b5ac7ce21cb952046a1ebfbbc6dd81b0fda ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/WIDESEA_Tasks.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/ref/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Tasks/obj/Release/net6.0/refint/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Properties/PublishProfiles/FolderProfile.pubxml.user
@@ -6,7 +6,7 @@ <Project> <PropertyGroup> <_PublishTargetUrl>E:\KHGITHUB\AGVJiaoLiao\代ç 管ç\WMS\WIDESEA_WMSServer\WIDESEA_WMSServer\bin\Release\net6.0\publish\</_PublishTargetUrl> <History>True|2025-03-20T01:46:51.3944262Z||;True|2025-03-17T09:04:46.0331367+08:00||;True|2025-02-24T17:26:06.2253698+08:00||;True|2024-12-31T16:05:32.3038884+08:00||;True|2024-12-31T15:58:09.8482280+08:00||;True|2024-12-31T15:53:43.3114762+08:00||;True|2024-12-31T11:04:50.2694859+08:00||;True|2024-12-31T10:56:23.1173754+08:00||;True|2024-12-29T16:46:35.1091509+08:00||;True|2024-12-29T16:36:45.1902265+08:00||;True|2024-12-12T17:26:14.1391392+08:00||;True|2024-12-12T17:14:43.3607224+08:00||;True|2024-12-12T16:11:37.7467285+08:00||;False|2024-12-12T16:11:02.5223860+08:00||;True|2024-12-11T17:07:04.0093019+08:00||;True|2024-12-11T11:19:40.0174324+08:00||;True|2024-12-10T18:53:41.4109872+08:00||;True|2024-12-09T17:55:46.1403389+08:00||;True|2024-12-04T15:47:23.5885084+08:00||;True|2024-12-04T15:23:24.7345124+08:00||;True|2024-12-04T15:14:48.0463471+08:00||;True|2024-12-04T15:14:22.1764190+08:00||;True|2024-12-04T10:43:36.0321084+08:00||;</History> <History>True|2025-03-25T09:24:06.4395026Z||;True|2025-03-25T14:19:32.6934861+08:00||;True|2025-03-22T15:14:09.9183927+08:00||;True|2025-03-20T09:46:51.3944262+08:00||;True|2025-03-17T09:04:46.0331367+08:00||;True|2025-02-24T17:26:06.2253698+08:00||;True|2024-12-31T16:05:32.3038884+08:00||;True|2024-12-31T15:58:09.8482280+08:00||;True|2024-12-31T15:53:43.3114762+08:00||;True|2024-12-31T11:04:50.2694859+08:00||;True|2024-12-31T10:56:23.1173754+08:00||;True|2024-12-29T16:46:35.1091509+08:00||;True|2024-12-29T16:36:45.1902265+08:00||;True|2024-12-12T17:26:14.1391392+08:00||;True|2024-12-12T17:14:43.3607224+08:00||;True|2024-12-12T16:11:37.7467285+08:00||;False|2024-12-12T16:11:02.5223860+08:00||;True|2024-12-11T17:07:04.0093019+08:00||;True|2024-12-11T11:19:40.0174324+08:00||;True|2024-12-10T18:53:41.4109872+08:00||;True|2024-12-09T17:55:46.1403389+08:00||;True|2024-12-04T15:47:23.5885084+08:00||;True|2024-12-04T15:23:24.7345124+08:00||;True|2024-12-04T15:14:48.0463471+08:00||;True|2024-12-04T15:14:22.1764190+08:00||;True|2024-12-04T10:43:36.0321084+08:00||;</History> <LastFailureDetails /> </PropertyGroup> </Project> ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_WMSServer.exeBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Debug/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_WMSServer.exeBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_WMSServer.exeBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/bin/Release/net6.0/publish/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_WMSServer")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_WMSServer")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_WMSServer")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.AssemblyInfoInputs.cache
@@ -1 +1 @@ 71551b6e66d4d2760541839e9790d286adde08d8bb2d1bf9e489aad515760bf3 890e1d6ca4180bdfbeedf83cc8253559bda44d2b5dd2e73f47adc26f18b8ec49 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/apphost.exeBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/ref/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Debug/net6.0/refint/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_BasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Core.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Core.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_DTO.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_DTO.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IBasicService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IInboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IOutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IRecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_IStockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ISystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_ITaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_InboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Model.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Model.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_OutboundService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_RecordService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_StockService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_SystemService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoRepository.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoRepository.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoService.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_TaskInfoService.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Tasks.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_Tasks.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_WMSServer.exeBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/PubTmp/Out/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.AssemblyInfo.cs
@@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("WIDESEA_WMSServer")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a33f6916afbf1fc629baecb772939cda2ee981")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+867aba2636e34a1050b1c4c84bbe78cc9c39b553")] [assembly: System.Reflection.AssemblyProductAttribute("WIDESEA_WMSServer")] [assembly: System.Reflection.AssemblyTitleAttribute("WIDESEA_WMSServer")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.AssemblyInfoInputs.cache
@@ -1 +1 @@ 5d28e1802fd4f7b4337fbeecb32bb401ce03712de55c3223051ad2271c4c3324 ea235f6b8a0fef9fa442dabcba84f88401fc7b5caf6176f11264f589e9a02439 ´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.csproj.AssemblyReference.cacheBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/WIDESEA_WMSServer.pdbBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/apphost.exeBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/ref/WIDESEA_WMSServer.dllBinary files differ
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/obj/Release/net6.0/refint/WIDESEA_WMSServer.dllBinary files differ