paket

条码打印软件应用之DPD条码

梦想的初衷 提交于 2020-11-10 18:42:24
DPD条码由DPD(Deutscher Paket Dienst)使用,DPD条码是基于Code128码编码的,编码长度限制为28位,DPD条码与普通条码有所区别,其编码数据(条形码本身数据)和人类可读数据(条码下方显示出来的数据)略有不同。 DPD条码的编码数据与人类可读数据对比如下: 编码数据:IPPPPPPPTTTTTTTTTTTTTTSSSCCC 可读数据:PPPPPPPTTTTTTTTTTTTTTSSSCCCD 通过上面的编码数据和人类可读文本对比可以看出,人类可读数据没有前面一个数据,不过后面添加了一个校验码,校验算法是:模数103(eCDCode128)。 下面来看下DPD条码的制作方法: 打开中琅条码打印软件,新建一个空白标签,然后利用软件左侧工具栏中的“绘制一维码”工具在白色画布上添加一个条形码(条形码默认类型是Code128),双击条形码打开“图形属性-条码”一栏,把条码类型修改为“DPD”。 然后点开“数据源”一栏,点击数据对象下方的“修改”按钮,弹出“数据对象管理”窗口,删除默认的数据123456,然后输入28位DPD条码数据,并保存修改就可以看到DPD条码的效果,前面一个数据无法看到,后面添加了一个校验位。 综上所述就是关于中琅条码打印软件中DPD条码的详细信息以及制作方法,中琅软件支持多种类型的条形码,有需要的小伙伴可以下载体验! 来源: oschina

How to use paket from command line

╄→гoц情女王★ 提交于 2019-12-22 04:33:03
问题 I installed paket from nuget in Nuget Package Manager Console with: Install-Package paket I then tried to run paket convert-from-nuget . It stalled out on a user prompt (it wouldn't let me type into the package manager console). My next thought was to run it from command line, but how to do so is not documented. Just putting paket convert-from-nuget into a standard dev command prompt results in an error saying "paket" is not recognized. How do I run paket from the command line or powershell,

How to use Docker with Paket?

一笑奈何 提交于 2019-12-11 10:31:26
问题 There are several projects in my solution (some production and some test ...) and there is a docker image per each project. Each .fsproj file in the solution contains the line: <Import Project="..\.paket\Paket.Restore.targets" /> But docker's build context is limited by the project's folder and I'd rather not deal with that problem. Can use Paket without the need for referring to parent folders? 回答1: I'm not an expert, but I guess you have two options here: You can keep Paket.Restore.targets

Why Paket installs way more packages than Nuget?

旧城冷巷雨未停 提交于 2019-12-06 21:26:50
问题 Why Paket installs way more packages than Nuget by default? Is it normal behaviour or am I doing something wrong? I followed Getting Started guide (but with the help of paket.powershell which I installed by choco install paket.powershell): I made a new WPF project Initialized Paket with Paket-Init command Added nuget reactiveui to paket.dependencies file Executed Paket-Install command to download packages As a result I have the following in my packages folder: reactiveui reactiveui-core Rx

How to use paket from command line

自古美人都是妖i 提交于 2019-12-05 02:07:54
I installed paket from nuget in Nuget Package Manager Console with: Install-Package paket I then tried to run paket convert-from-nuget . It stalled out on a user prompt (it wouldn't let me type into the package manager console). My next thought was to run it from command line, but how to do so is not documented. Just putting paket convert-from-nuget into a standard dev command prompt results in an error saying "paket" is not recognized. How do I run paket from the command line or powershell, and how do you specify which solution to work against? The way to setup paket in your repository is as