2015年9月21日 / kirito / 0 Comments
Because your csproj configuration may not correct configured.
Open the csproj file(project file) with text, make sure
|
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain> |
is TRUE, that’s it.
2015年9月15日 / kirito / 0 Comments
chown -R www-data:www-data your-wordpress-directory
2015年9月9日 / kirito / 2 Comments
If your app published in only one language such as zh-cn, but the generated package contain two languages such as en-us, zh-cn, you should to force language in Package.appxmanifest.
Locate the codes here:
|
<Resources> <Resource Language="x-generate" /> </Resources> |
Changes to eg: zh-cn:
|
<Resources> <Resource Language="zh-cn" /> </Resources> |