CB-14225 fix sample Namespace Serialize attribute in template/Properties/Default.rd.xml (#286)

### Original issue

<https://issues.apache.org/jira/browse/CB-14225>

### Platforms affected

Windows

### What does this PR do?

- Fix sample Namespace Serialize attribute in `template/Properties/Default.rd.xml`, according to `Default.rd.xml` in C# UWP project generated by Visual Studio 2017

I also raised <https://github.com/Microsoft/Windows-universal-samples/pull/950> to apply a similar fix there.

Also related:
- #284 - fix license text & add link to `template/Properties/Default.rd.xml` (as reported in <https://issues.apache.org/jira/browse/CB-14224>)
- <https://github.com/Microsoft/Windows-universal-samples/pull/949> - fix license txt (related to but not part of #284)

### What testing has been done on this change?

- Visual inspection
- check diff

### Checklist

- [x] [Reported an issue](http://cordova.apache.org/contribute/issues.html) in the JIRA database
- [x] Commit message follows the format: "CB-3232: (android) Fix bug with resolving file paths", where CB-xxxx is the JIRA ID & "android" is the platform affected.
- ~~Added automated test coverage as appropriate for this change.~~
1 file changed
tree: b42ff0e4a8b50f4e2c872ab2efe286fc197d5c58
  1. .github/
  2. bin/
  3. cordova-js-src/
  4. node_modules/
  5. spec/
  6. template/
  7. .eslintignore
  8. .eslintrc.yml
  9. .gitattributes
  10. .gitignore
  11. .ratignore
  12. .travis.yml
  13. appveyor.yml
  14. CONTRIBUTING.md
  15. cordova-windows10.md
  16. LICENSE
  17. NOTICE
  18. package.json
  19. README.md
  20. RELEASENOTES.md
  21. VERSION
README.md

Apache Cordova for Windows

Build status Build Status codecov.io

This repo contains the code for an Apache Cordova platform that allows you to build applications that target Windows 10, and Windows 8.1, as well as Windows Phone 8.1. An Apache Cordova based applications is written in HTML, CSS and JavaScript.

(Warning: Windows 8 has been deprecated, please update your applications to target Windows 8.1 or above)

Apache Cordova is a project of The Apache Software Foundation (ASF)

Requirements

Windows 10, Windows 8.1, Windows Phone 8.1

Host OS: Windows 8.1 or Windows 10

Install the tools: Visual Studio 2015 or newer

Windows 8.1,Windows Phone 8.1

Host OS: Windows 8.1

Install the tools: Visual Studio 2013 Express.

Getting started

The best way to use this is to install the Cordova CLI, create a project, add the windows platform, and run the app:

npm install -g cordova
cordova create test
cordova platform add windows
cordova run windows

Getting logs from Windows Store applications

You can get your JavaScript logs as well as Windows logs related to your Windows Store application by running the following command from your app directory:

platforms\windows\cordova\log

In most cases, this command requires administrator privileges. However, if you want to gather logs without admin privileges, you may need to manually enable logging channel via Event Viewer:

Start -> Run -> eventvwr
View -> Show Analytic and Debug Logs
Applications and Services Logs -> Microsoft -> Windows -> AppHost -> AppTracing -> Enable Log

Please note that the log command is supported only for Windows Store applications and cannot get logs from Windows Phone application.

Report Issues

Report them right here at GitHub using the “Issues” tab.

Further Reading