├── Licence.txt ├── NfcNDefTagReader_Release_AnyCPU_v1_0.xap ├── NfcNdefTagReader.sln ├── NfcNdefTagReader ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Images │ │ ├── NFC-device-smaller.png │ │ ├── NFC-device-smaller_2.png │ │ ├── NFC-device.png │ │ └── NFC-device_2.png │ ├── NFC-device.png │ └── Tiles │ │ ├── NfcNdefTagReader-large.png │ │ ├── NfcNdefTagReader-medium.png │ │ └── NfcNdefTagReader-small.png ├── LocalizedStrings.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── NdefRecord.cs ├── NdefRecordTypeDefinitions.cs ├── NdefRecordUtility.cs ├── NfcNdefTagReader.csproj ├── NfcNdefTagReader.csproj.user ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── README.md └── doc ├── app_icon.png ├── nfcndeftagreader-1.png ├── nfcndeftagreader-2.png └── nfcndeftagreader-uml-diagram.png /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/Licence.txt -------------------------------------------------------------------------------- /NfcNDefTagReader_Release_AnyCPU_v1_0.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNDefTagReader_Release_AnyCPU_v1_0.xap -------------------------------------------------------------------------------- /NfcNdefTagReader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader.sln -------------------------------------------------------------------------------- /NfcNdefTagReader/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/App.xaml -------------------------------------------------------------------------------- /NfcNdefTagReader/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/App.xaml.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Images/NFC-device-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Images/NFC-device-smaller.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Images/NFC-device-smaller_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Images/NFC-device-smaller_2.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Images/NFC-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Images/NFC-device.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Images/NFC-device_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Images/NFC-device_2.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/NFC-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/NFC-device.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Tiles/NfcNdefTagReader-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Tiles/NfcNdefTagReader-large.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Tiles/NfcNdefTagReader-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Tiles/NfcNdefTagReader-medium.png -------------------------------------------------------------------------------- /NfcNdefTagReader/Assets/Tiles/NfcNdefTagReader-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Assets/Tiles/NfcNdefTagReader-small.png -------------------------------------------------------------------------------- /NfcNdefTagReader/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/LocalizedStrings.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/MainPage.xaml -------------------------------------------------------------------------------- /NfcNdefTagReader/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/MainPage.xaml.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/NdefRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/NdefRecord.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/NdefRecordTypeDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/NdefRecordTypeDefinitions.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/NdefRecordUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/NdefRecordUtility.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/NfcNdefTagReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/NfcNdefTagReader.csproj -------------------------------------------------------------------------------- /NfcNdefTagReader/NfcNdefTagReader.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/NfcNdefTagReader.csproj.user -------------------------------------------------------------------------------- /NfcNdefTagReader/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Properties/AppManifest.xml -------------------------------------------------------------------------------- /NfcNdefTagReader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /NfcNdefTagReader/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /NfcNdefTagReader/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/NfcNdefTagReader/Resources/AppResources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/README.md -------------------------------------------------------------------------------- /doc/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/doc/app_icon.png -------------------------------------------------------------------------------- /doc/nfcndeftagreader-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/doc/nfcndeftagreader-1.png -------------------------------------------------------------------------------- /doc/nfcndeftagreader-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/doc/nfcndeftagreader-2.png -------------------------------------------------------------------------------- /doc/nfcndeftagreader-uml-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nfc-ndef-tag-reader/HEAD/doc/nfcndeftagreader-uml-diagram.png --------------------------------------------------------------------------------