Monotouch - ICSharpCode.SharpZipLib giving an error

前端 未结 2 2169
[愿得一人]
[愿得一人] 2021-02-19 16:51

Hy guys,

I\'m trying to generate a Zip File with ICSharpCode.SharpZipLib library but it\'s throwing a really weird error.

Code:

public stati         


        
2条回答
  •  别那么骄傲
    2021-02-19 17:08

    MonoTouch removes I18N codepages that it cannot statically determine that you need. You can force monotouch to keep the needed codepage collection (West) in this case one of two ways:

    1. Click Project->[ProjectName] Options
    2. Select iPhone Build
    3. You have two options at this point a. Select "west" from the I18n assemblies list b. Add "-i18n=west" to "Extra Arguments"

    NOTE: You will need to perform step #3 for every combination of configurations and platforms.

提交回复
热议问题