├── src ├── .gitkeep ├── SimInformation.UWP.Tests │ ├── Assets │ │ ├── StoreLogo.png │ │ ├── SplashScreen.scale-200.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── UnitTestApp.xaml │ ├── project.json │ ├── UnitTest.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── Package.appxmanifest │ ├── UnitTestApp.xaml.cs │ └── SimInformation.UWP.Tests.csproj ├── SimInformation │ ├── ISimInformation.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SimInformation.csproj │ └── SimCard.cs ├── SimInformation.UWP │ ├── project.json │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── SimInformation.UWP.rd.xml │ ├── SimInformation.cs │ └── SimInformation.UWP.csproj ├── SimInformation.Tests │ ├── packages.config │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SimInformation.Tests.csproj ├── SimInformation.iOS │ ├── SimInformation.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SimInformation.iOS.csproj ├── siminformation.nuspec └── SimInformation.sln ├── assets ├── .gitkeep ├── design-notes.md ├── noun_15159_cc.png └── noun_15159_cc_cropped.png ├── contrib └── .gitkeep ├── licenses └── .gitkeep ├── README.md ├── tools └── nuget │ └── NuGet.exe ├── .gitattributes ├── LICENSE.md └── .gitignore /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /licenses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | HTTP/1.1 302 Found 3 | Location: https://git.ghuntley.com/ 4 | ``` 5 | -------------------------------------------------------------------------------- /assets/design-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/assets/design-notes.md -------------------------------------------------------------------------------- /tools/nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/tools/nuget/NuGet.exe -------------------------------------------------------------------------------- /assets/noun_15159_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/assets/noun_15159_cc.png -------------------------------------------------------------------------------- /assets/noun_15159_cc_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/assets/noun_15159_cc_cropped.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/SimInformation/ISimInformation.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace SimInformation 4 | { 5 | public interface ISimInformation 6 | { 7 | IReadOnlyList GetSimCards(); 8 | } 9 | } -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghuntley/siminformation/HEAD/src/SimInformation.UWP.Tests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/UnitTestApp.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/SimInformation.UWP/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0" 4 | }, 5 | "frameworks": { 6 | "uap10.0": {} 7 | }, 8 | "runtimes": { 9 | "win10-arm": {}, 10 | "win10-arm-aot": {}, 11 | "win10-x86": {}, 12 | "win10-x86-aot": {}, 13 | "win10-x64": {}, 14 | "win10-x64-aot": {} 15 | } 16 | } -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0" 4 | }, 5 | "frameworks": { 6 | "uap10.0": {} 7 | }, 8 | "runtimes": { 9 | "win10-arm": {}, 10 | "win10-arm-aot": {}, 11 | "win10-x86": {}, 12 | "win10-x86-aot": {}, 13 | "win10-x64": {}, 14 | "win10-x64-aot": {} 15 | } 16 | } -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/UnitTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.VisualStudio.TestPlatform.UnitTestFramework; 3 | 4 | namespace SimInformation.UWP.Tests 5 | { 6 | [TestClass] 7 | public class UnitTest1 8 | { 9 | [TestMethod] 10 | public void TestMethod1() 11 | { 12 | var simInfo = new SimInformation(); 13 | 14 | var details = simInfo.GetSimCards(); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/SimInformation.Tests/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Catch all for anything we forgot. Add rules if you get CRLF to LF warnings. 2 | * text=auto 3 | 4 | # Text files that should be normalized to LF in odb. 5 | *.cs text eol=lf diff=csharp 6 | *.xaml text 7 | *.config text 8 | *.c text 9 | *.h text 10 | *.cpp text 11 | *.hpp text 12 | 13 | *.sln text 14 | *.csproj text 15 | *.vcxproj text 16 | 17 | *.md text 18 | *.tt text 19 | *.sh text 20 | *.ps1 text 21 | *.cmd text 22 | *.bat text 23 | *.markdown text 24 | *.msbuild text 25 | 26 | 27 | # Binary files that should not be normalized or diffed 28 | *.png binary 29 | *.jpg binary 30 | *.gif binary 31 | *.ico binary 32 | *.rc binary 33 | 34 | *.pfx binary 35 | *.snk binary 36 | *.dll binary 37 | *.exe binary 38 | *.lib binary 39 | *.exp binary 40 | *.pdb binary 41 | *.sdf binary 42 | *.7z binary 43 | 44 | # Generated file should just use CRLF, it's fiiine 45 | SolutionInfo.cs text eol=crlf diff=csharp 46 | -------------------------------------------------------------------------------- /src/SimInformation.iOS/SimInformation.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using CoreTelephony; 4 | 5 | namespace SimInformation.iOS 6 | { 7 | public class SimInformation : ISimInformation 8 | { 9 | private readonly CTTelephonyNetworkInfo _telephonyNetworkInfo; 10 | 11 | public SimInformation(CTTelephonyNetworkInfo telephonyNetworkInfo = null) 12 | { 13 | _telephonyNetworkInfo = telephonyNetworkInfo ?? new CTTelephonyNetworkInfo(); 14 | } 15 | 16 | /// 17 | /// 18 | /// 19 | /// 20 | public IReadOnlyList GetSimCards() 21 | { 22 | var results = new List(); 23 | 24 | var simCard = new SimCard(); 25 | simCard.MNC = _telephonyNetworkInfo.SubscriberCellularProvider.MobileNetworkCode; 26 | simCard.MCC = _telephonyNetworkInfo.SubscriberCellularProvider.MobileCountryCode; 27 | 28 | results.Add(simCard); 29 | 30 | return results.AsReadOnly(); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Geoffrey Huntley 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /src/SimInformation.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SimInformation.UWP")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SimInformation.UWP")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /src/SimInformation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Resources; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("SimInfo")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("SimInfo")] 14 | [assembly: AssemblyCopyright("Copyright © 2016")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: NeutralResourcesLanguage("en")] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SimInformation.UWP.Tests")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SimInformation.UWP.Tests")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | [assembly: AssemblyMetadata("TargetPlatform","UAP")] 17 | 18 | // Version information for an assembly consists of the following four values: 19 | // 20 | // Major Version 21 | // Minor Version 22 | // Build Number 23 | // Revision 24 | // 25 | // You can specify all the values or you can default the Build and Revision Numbers 26 | // by using the '*' as shown below: 27 | // [assembly: AssemblyVersion("1.0.*")] 28 | [assembly: AssemblyVersion("1.0.0.0")] 29 | [assembly: AssemblyFileVersion("1.0.0.0")] 30 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /src/siminformation.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @project@ 5 | @build.number@ 6 | @authors@ 7 | @authors@ 8 | @summary@ 9 | https://github.com/ghuntley/siminformation/blob/master/LICENSE.md 10 | https://github.com/ghuntley/siminformation 11 | https://i.imgur.com/5ps5Ewf.png 12 | false 13 | @description@ 14 | @releaseNotes@ 15 | Xamarin UWP iOS Android Mobile SIM MNC MSID IMSI MSISDN MCC ICCID 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/SimInformation.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SimInfo.Tests")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SimInfo.Tests")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("4fbb9da2-a85e-4e45-8c2f-f7facbb5c9a1")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/SimInformation.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SimInformation.iOS")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SimInformation.iOS")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("663bf254-2098-4dd7-89a5-44ecde343815")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/SimInformation.UWP/Properties/SimInformation.UWP.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/Package.appxmanifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | SimInformation.UWP.Tests 7 | ghuntley 8 | Assets\StoreLogo.png 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/SimInformation.iOS/SimInformation.iOS.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | 8.0.30703 7 | 2.0 8 | {663BF254-2098-4DD7-89A5-44ECDE343815} 9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Library 11 | SimInformation.iOS 12 | Resources 13 | SimInformation.iOS 14 | 15 | 16 | true 17 | full 18 | false 19 | bin\iPhone\Debug 20 | DEBUG 21 | prompt 22 | 4 23 | false 24 | true 25 | iPhone Developer 26 | 27 | 28 | none 29 | true 30 | bin\iPhone\Release 31 | prompt 32 | 4 33 | false 34 | iPhone Developer 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | {0617ba40-3198-4593-9fd6-8cbaa47caaa9} 43 | SimInformation 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/SimInformation/SimInformation.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10.0 6 | Debug 7 | AnyCPU 8 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9} 9 | Library 10 | Properties 11 | SimInformation 12 | SimInformation 13 | en-US 14 | 512 15 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 16 | Profile7 17 | v4.5 18 | 19 | 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | 28 | 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 52 | -------------------------------------------------------------------------------- /src/SimInformation.UWP/SimInformation.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using Windows.Networking.NetworkOperators; 3 | 4 | namespace SimInformation.UWP 5 | { 6 | public class SimInformation : ISimInformation 7 | { 8 | /// 9 | /// Will only return details of a SINGLE simcard. 10 | /// 11 | /// TODO: Add support for multiple sim cards. See issue #1 12 | public IReadOnlyList GetSimCards() 13 | { 14 | var results = new List(); 15 | 16 | var modem = MobileBroadbandModem.GetDefault(); 17 | if (modem == null) 18 | { 19 | return results.AsReadOnly(); 20 | } 21 | 22 | var account = modem.CurrentAccount; 23 | if (account == null) 24 | { 25 | return results.AsReadOnly(); 26 | } 27 | 28 | var simCard = new SimCard(); 29 | 30 | simCard.ICCID = account.CurrentDeviceInformation.SimIccId; 31 | simCard.IMSI = account.CurrentDeviceInformation.SubscriberId; 32 | simCard.MSISDN = modem.DeviceInformation.TelephoneNumbers; 33 | 34 | simCard.MCC = ExtractMCC(simCard.IMSI); 35 | simCard.MNC = ExtractMNC(simCard.IMSI); 36 | simCard.MSID = ExtractMSID(simCard.IMSI); 37 | 38 | results.Add(simCard); 39 | 40 | return results.AsReadOnly(); 41 | } 42 | 43 | /// 44 | /// Mobile Country Code(MCC) : First 3 digits of IMSI gives you MCC. 45 | /// 46 | private static string ExtractMCC(string imsi) 47 | { 48 | if (string.IsNullOrWhiteSpace(imsi)) return string.Empty; 49 | 50 | var operatorId = imsi.Substring(0, 5); 51 | var mccId = operatorId.Substring(0, 3); 52 | 53 | return mccId; 54 | ; 55 | } 56 | 57 | /// 58 | /// Mobile Network Code (MNC) : Next 2 or 3 digits give you this info. 59 | /// 60 | private static string ExtractMNC(string imsi) 61 | { 62 | if (string.IsNullOrWhiteSpace(imsi)) return string.Empty; 63 | var operatorId = imsi.Substring(0, 5); 64 | var mncId = operatorId.Substring(3, 2); 65 | 66 | return mncId; 67 | } 68 | 69 | /// 70 | /// Mobile Station ID (MSID) : Rest of the digits. Gives away the network you are using like IS-95, TDMA , GSM etc. 71 | /// 72 | private static string ExtractMSID(string imsi) 73 | { 74 | if (string.IsNullOrWhiteSpace(imsi)) return string.Empty; 75 | 76 | var msid = imsi.Substring(6); 77 | 78 | return msid; 79 | } 80 | } 81 | } -------------------------------------------------------------------------------- /src/SimInformation/SimCard.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace SimInformation 4 | { 5 | public class SimCard 6 | { 7 | public SimCard() 8 | { 9 | MSISDN = new List(); 10 | } 11 | 12 | /// 13 | /// Integrated Circuit Card ID. 14 | /// 15 | /// Integrated Circuit Card Identifier identifies each SIM internationally. 16 | public string ICCID { get; set; } 17 | 18 | /// 19 | /// Mobile Country Code 20 | /// 21 | /// Identifies the country of origin by a two- or three-digit code. 22 | public string MCC { get; set; } 23 | 24 | /// 25 | /// International Mobile Subscriber Identity. 26 | /// 27 | /// 28 | /// International mobile Subscriber Identity is used to identify the user of a cellular network and is a unique 29 | /// identification associated with all cellular networks. It is stored as a 64 bit field and is sent by the phone to 30 | /// the network. It is also used for acquiring other details of the mobile in the HLR or as locally copied in the 31 | /// Visitor Location Register. It consists of three parts: 32 | /// - Mobile Country Code(MCC) : First 3 digits of IMSI gives you MCC. 33 | /// - Mobile Network Code (MNC) : Next 2 or 3 digits give you this info. 34 | /// - Mobile Station ID (MSID) : Rest of the digits. Gives away the network you are using like IS-95, TDMA , GSM etc. 35 | /// 36 | public string IMSI { get; set; } 37 | 38 | /// 39 | /// Mobile Station ID. 40 | /// 41 | /// The network you are using like IS-95, TDMA , GSM etc. 42 | public string MSID { get; set; } 43 | 44 | /// 45 | /// Mobile Network Code. 46 | /// 47 | public string MNC { get; set; } 48 | 49 | /// 50 | /// Mobile Subscriber International ISDN Number. 51 | /// 52 | /// 53 | /// Mobile Station ISDN number is the full phone number of a subscriber, including the national country code (e.g. 54 | /// 1 for US, 44 for UK, etc.). The purpose of the MSISDN is simply to allow a device to be called. A subscriber can 55 | /// have multiple MSISDNs (e.g. one phone number for business, one for personal calls, one for fax, etc.), but 56 | /// generally only one IMSI. The MSISDN does not need to be stored on the SIM card. In cases where it is stored on the 57 | /// SIM, the main reason is so that the user can use check to see what their own MSISDN is (in case they forget). The 58 | /// MSISDN is never signaled to of from the device. 59 | /// 60 | public IReadOnlyList MSISDN { get; set; } 61 | } 62 | } -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.ApplicationModel; 7 | using Windows.ApplicationModel.Activation; 8 | using Windows.Foundation; 9 | using Windows.Foundation.Collections; 10 | using Windows.UI.Xaml; 11 | using Windows.UI.Xaml.Controls; 12 | using Windows.UI.Xaml.Controls.Primitives; 13 | using Windows.UI.Xaml.Data; 14 | using Windows.UI.Xaml.Input; 15 | using Windows.UI.Xaml.Media; 16 | using Windows.UI.Xaml.Navigation; 17 | 18 | namespace SimInformation.UWP.Tests 19 | { 20 | /// 21 | /// Provides application-specific behavior to supplement the default Application class. 22 | /// 23 | sealed partial class App : Application 24 | { 25 | /// 26 | /// Initializes the singleton application object. This is the first line of authored code 27 | /// executed, and as such is the logical equivalent of main() or WinMain(). 28 | /// 29 | public App() 30 | { 31 | this.InitializeComponent(); 32 | this.Suspending += OnSuspending; 33 | } 34 | 35 | /// 36 | /// Invoked when the application is launched normally by the end user. Other entry points 37 | /// will be used such as when the application is launched to open a specific file. 38 | /// 39 | /// Details about the launch request and process. 40 | protected override void OnLaunched(LaunchActivatedEventArgs e) 41 | { 42 | 43 | #if DEBUG 44 | if (System.Diagnostics.Debugger.IsAttached) 45 | { 46 | this.DebugSettings.EnableFrameRateCounter = true; 47 | } 48 | #endif 49 | 50 | Frame rootFrame = Window.Current.Content as Frame; 51 | 52 | // Do not repeat app initialization when the Window already has content, 53 | // just ensure that the window is active 54 | if (rootFrame == null) 55 | { 56 | // Create a Frame to act as the navigation context and navigate to the first page 57 | rootFrame = new Frame(); 58 | 59 | rootFrame.NavigationFailed += OnNavigationFailed; 60 | 61 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) 62 | { 63 | //TODO: Load state from previously suspended application 64 | } 65 | 66 | // Place the frame in the current Window 67 | Window.Current.Content = rootFrame; 68 | } 69 | 70 | Microsoft.VisualStudio.TestPlatform.TestExecutor.UnitTestClient.CreateDefaultUI(); 71 | 72 | // Ensure the current window is active 73 | Window.Current.Activate(); 74 | 75 | Microsoft.VisualStudio.TestPlatform.TestExecutor.UnitTestClient.Run(e.Arguments); 76 | } 77 | 78 | /// 79 | /// Invoked when Navigation to a certain page fails 80 | /// 81 | /// The Frame which failed navigation 82 | /// Details about the navigation failure 83 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) 84 | { 85 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName); 86 | } 87 | 88 | /// 89 | /// Invoked when application execution is being suspended. Application state is saved 90 | /// without knowing whether the application will be terminated or resumed with the contents 91 | /// of memory still intact. 92 | /// 93 | /// The source of the suspend request. 94 | /// Details about the suspend request. 95 | private void OnSuspending(object sender, SuspendingEventArgs e) 96 | { 97 | var deferral = e.SuspendingOperation.GetDeferral(); 98 | //TODO: Save application state and stop any background activity 99 | deferral.Complete(); 100 | } 101 | } 102 | } 103 | -------------------------------------------------------------------------------- /src/SimInformation.Tests/SimInformation.Tests.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1} 8 | Library 9 | Properties 10 | SimInformation.Tests 11 | SimInformation.Tests 12 | v4.5.2 13 | 512 14 | 15 | 16 | true 17 | full 18 | false 19 | bin\Debug\ 20 | DEBUG;TRACE 21 | prompt 22 | 4 23 | 24 | 25 | pdbonly 26 | true 27 | bin\Release\ 28 | TRACE 29 | prompt 30 | 4 31 | 32 | 33 | 34 | ..\SimInfo\packages\FluentAssertions.4.1.1\lib\net45\FluentAssertions.dll 35 | True 36 | 37 | 38 | ..\SimInfo\packages\FluentAssertions.4.1.1\lib\net45\FluentAssertions.Core.dll 39 | True 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | ..\SimInfo\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll 51 | True 52 | 53 | 54 | ..\SimInfo\packages\xunit.assert.2.1.0\lib\dotnet\xunit.assert.dll 55 | True 56 | 57 | 58 | ..\SimInfo\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll 59 | True 60 | 61 | 62 | ..\SimInfo\packages\xunit.extensibility.execution.2.1.0\lib\net45\xunit.execution.desktop.dll 63 | True 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | {0617ba40-3198-4593-9fd6-8cbaa47caaa9} 75 | SimInformation 76 | 77 | 78 | 79 | 86 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | build/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | 84 | # Visual Studio profiler 85 | *.psess 86 | *.vsp 87 | *.vspx 88 | *.sap 89 | 90 | # TFS 2012 Local Workspace 91 | $tf/ 92 | 93 | # Guidance Automation Toolkit 94 | *.gpState 95 | 96 | # ReSharper is a .NET coding add-in 97 | _ReSharper*/ 98 | *.[Rr]e[Ss]harper 99 | *.DotSettings.user 100 | 101 | # JustCode is a .NET coding add-in 102 | .JustCode 103 | 104 | # TeamCity is a build add-in 105 | _TeamCity* 106 | 107 | # DotCover is a Code Coverage Tool 108 | *.dotCover 109 | 110 | # NCrunch 111 | _NCrunch_* 112 | .*crunch*.local.xml 113 | nCrunchTemp_* 114 | 115 | # MightyMoose 116 | *.mm.* 117 | AutoTest.Net/ 118 | 119 | # Web workbench (sass) 120 | .sass-cache/ 121 | 122 | # Installshield output folder 123 | [Ee]xpress/ 124 | 125 | # DocProject is a documentation generator add-in 126 | DocProject/buildhelp/ 127 | DocProject/Help/*.HxT 128 | DocProject/Help/*.HxC 129 | DocProject/Help/*.hhc 130 | DocProject/Help/*.hhk 131 | DocProject/Help/*.hhp 132 | DocProject/Help/Html2 133 | DocProject/Help/html 134 | 135 | # Click-Once directory 136 | publish/ 137 | 138 | # Publish Web Output 139 | *.[Pp]ublish.xml 140 | *.azurePubxml 141 | # TODO: Comment the next line if you want to checkin your web deploy settings 142 | # but database connection strings (with potential passwords) will be unencrypted 143 | *.pubxml 144 | *.publishproj 145 | 146 | # NuGet Packages 147 | *.nupkg 148 | # The packages folder can be ignored because of Package Restore 149 | **/packages/* 150 | # except build/, which is used as an MSBuild target. 151 | !**/packages/build/ 152 | # Uncomment if necessary however generally it will be regenerated when needed 153 | #!**/packages/repositories.config 154 | 155 | # Windows Azure Build Output 156 | csx/ 157 | *.build.csdef 158 | 159 | # Windows Azure Emulator 160 | ecf/ 161 | rcf/ 162 | 163 | # Windows Store app package directory 164 | AppPackages/ 165 | BundleArtifacts/ 166 | 167 | # Visual Studio cache files 168 | # files ending in .cache can be ignored 169 | *.[Cc]ache 170 | # but keep track of directories ending in .cache 171 | !*.[Cc]ache/ 172 | 173 | # Others 174 | ClientBin/ 175 | ~$* 176 | *~ 177 | *.dbmdl 178 | *.dbproj.schemaview 179 | *.pfx 180 | *.publishsettings 181 | node_modules/ 182 | orleans.codegen.cs 183 | 184 | # RIA/Silverlight projects 185 | Generated_Code/ 186 | 187 | # Backup & report files from converting an old project file 188 | # to a newer Visual Studio version. Backup files are not needed, 189 | # because we have git ;-) 190 | _UpgradeReport_Files/ 191 | Backup*/ 192 | UpgradeLog*.XML 193 | UpgradeLog*.htm 194 | 195 | # SQL Server files 196 | *.mdf 197 | *.ldf 198 | 199 | # Business Intelligence projects 200 | *.rdl.data 201 | *.bim.layout 202 | *.bim_*.settings 203 | 204 | # Microsoft Fakes 205 | FakesAssemblies/ 206 | 207 | # GhostDoc plugin setting file 208 | *.GhostDoc.xml 209 | 210 | # Node.js Tools for Visual Studio 211 | .ntvs_analysis.dat 212 | 213 | # Visual Studio 6 build log 214 | *.plg 215 | 216 | # Visual Studio 6 workspace options file 217 | *.opt 218 | 219 | # Visual Studio LightSwitch build output 220 | **/*.HTMLClient/GeneratedArtifacts 221 | **/*.DesktopClient/GeneratedArtifacts 222 | **/*.DesktopClient/ModelManifest.xml 223 | **/*.Server/GeneratedArtifacts 224 | **/*.Server/ModelManifest.xml 225 | _Pvt_Extensions 226 | 227 | # Paket dependency manager 228 | .paket/paket.exe 229 | 230 | # FAKE - F# Make 231 | .fake/ 232 | 233 | # tools 234 | tools/ -------------------------------------------------------------------------------- /src/SimInformation.UWP/SimInformation.UWP.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {019D83B0-9B94-462D-8E98-473FA8F71F8D} 8 | Library 9 | Properties 10 | SimInformation.UWP 11 | SimInformation.UWP 12 | en-US 13 | UAP 14 | 10.0.10586.0 15 | 10.0.10240.0 16 | 14 17 | 512 18 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 19 | 20 | 21 | AnyCPU 22 | true 23 | full 24 | false 25 | bin\Debug\ 26 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 27 | prompt 28 | 4 29 | 30 | 31 | AnyCPU 32 | pdbonly 33 | true 34 | bin\Release\ 35 | TRACE;NETFX_CORE;WINDOWS_UWP 36 | prompt 37 | 4 38 | 39 | 40 | x86 41 | true 42 | bin\x86\Debug\ 43 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 44 | ;2008 45 | full 46 | x86 47 | false 48 | prompt 49 | 50 | 51 | x86 52 | bin\x86\Release\ 53 | TRACE;NETFX_CORE;WINDOWS_UWP 54 | true 55 | ;2008 56 | pdbonly 57 | x86 58 | false 59 | prompt 60 | 61 | 62 | ARM 63 | true 64 | bin\ARM\Debug\ 65 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 66 | ;2008 67 | full 68 | ARM 69 | false 70 | prompt 71 | 72 | 73 | ARM 74 | bin\ARM\Release\ 75 | TRACE;NETFX_CORE;WINDOWS_UWP 76 | true 77 | ;2008 78 | pdbonly 79 | ARM 80 | false 81 | prompt 82 | 83 | 84 | x64 85 | true 86 | bin\x64\Debug\ 87 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 88 | ;2008 89 | full 90 | x64 91 | false 92 | prompt 93 | 94 | 95 | x64 96 | bin\x64\Release\ 97 | TRACE;NETFX_CORE;WINDOWS_UWP 98 | true 99 | ;2008 100 | pdbonly 101 | x64 102 | false 103 | prompt 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | {0617ba40-3198-4593-9fd6-8cbaa47caaa9} 117 | SimInformation 118 | 119 | 120 | 121 | 14.0 122 | 123 | 124 | 131 | -------------------------------------------------------------------------------- /src/SimInformation.UWP.Tests/SimInformation.UWP.Tests.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | x86 7 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E} 8 | AppContainerExe 9 | Properties 10 | SimInformation.UWP.Tests 11 | SimInformation.UWP.Tests 12 | en-US 13 | UAP 14 | 10.0.10586.0 15 | 10.0.10240.0 16 | 14 17 | 512 18 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 19 | SimInformation.UWP.Tests_TemporaryKey.pfx 20 | 14.0 21 | 22 | 23 | true 24 | bin\x86\Debug\ 25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 26 | ;2008 27 | full 28 | x86 29 | false 30 | prompt 31 | true 32 | 33 | 34 | bin\x86\Release\ 35 | TRACE;NETFX_CORE;WINDOWS_UWP 36 | true 37 | ;2008 38 | pdbonly 39 | x86 40 | false 41 | prompt 42 | true 43 | true 44 | 45 | 46 | true 47 | bin\ARM\Debug\ 48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 49 | ;2008 50 | full 51 | ARM 52 | false 53 | prompt 54 | true 55 | 56 | 57 | bin\ARM\Release\ 58 | TRACE;NETFX_CORE;WINDOWS_UWP 59 | true 60 | ;2008 61 | pdbonly 62 | ARM 63 | false 64 | prompt 65 | true 66 | true 67 | 68 | 69 | true 70 | bin\x64\Debug\ 71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 72 | ;2008 73 | full 74 | x64 75 | false 76 | prompt 77 | true 78 | 79 | 80 | bin\x64\Release\ 81 | TRACE;NETFX_CORE;WINDOWS_UWP 82 | true 83 | ;2008 84 | pdbonly 85 | x64 86 | false 87 | prompt 88 | true 89 | true 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | UnitTestApp.xaml 101 | 102 | 103 | 104 | 105 | 106 | MSBuild:Compile 107 | Designer 108 | 109 | 110 | 111 | 112 | Designer 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | {019d83b0-9b94-462d-8e98-473fa8f71f8d} 132 | SimInformation.UWP 133 | 134 | 135 | {0617ba40-3198-4593-9fd6-8cbaa47caaa9} 136 | SimInformation 137 | 138 | 139 | 140 | 14.0 141 | 142 | 143 | 150 | -------------------------------------------------------------------------------- /src/SimInformation.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.24720.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimInformation", "SimInformation\SimInformation.csproj", "{0617BA40-3198-4593-9FD6-8CBAA47CAAA9}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimInformation.Tests", "SimInformation.Tests\SimInformation.Tests.csproj", "{4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimInformation.UWP.Tests", "SimInformation.UWP.Tests\SimInformation.UWP.Tests.csproj", "{BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimInformation.UWP", "SimInformation.UWP\SimInformation.UWP.csproj", "{019D83B0-9B94-462D-8E98-473FA8F71F8D}" 13 | EndProject 14 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{46816307-947B-4AE8-9942-A4ED11FA5B6A}" 15 | ProjectSection(SolutionItems) = preProject 16 | ..\.gitattributes = ..\.gitattributes 17 | ..\.gitignore = ..\.gitignore 18 | ..\build.cmd = ..\build.cmd 19 | ..\build.fsx = ..\build.fsx 20 | ..\build.sh = ..\build.sh 21 | ..\assets\design-notes.md = ..\assets\design-notes.md 22 | ..\LICENSE.md = ..\LICENSE.md 23 | ..\README.md = ..\README.md 24 | siminformation.nuspec = siminformation.nuspec 25 | EndProjectSection 26 | EndProject 27 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimInformation.iOS", "SimInformation.iOS\SimInformation.iOS.csproj", "{663BF254-2098-4DD7-89A5-44ECDE343815}" 28 | EndProject 29 | Global 30 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 31 | Debug|Any CPU = Debug|Any CPU 32 | Debug|ARM = Debug|ARM 33 | Debug|x64 = Debug|x64 34 | Debug|x86 = Debug|x86 35 | Release|Any CPU = Release|Any CPU 36 | Release|ARM = Release|ARM 37 | Release|x64 = Release|x64 38 | Release|x86 = Release|x86 39 | EndGlobalSection 40 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 41 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 42 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|Any CPU.Build.0 = Debug|Any CPU 43 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|ARM.ActiveCfg = Debug|Any CPU 44 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|ARM.Build.0 = Debug|Any CPU 45 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|x64.ActiveCfg = Debug|Any CPU 46 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|x64.Build.0 = Debug|Any CPU 47 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|x86.ActiveCfg = Debug|Any CPU 48 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Debug|x86.Build.0 = Debug|Any CPU 49 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|Any CPU.ActiveCfg = Release|Any CPU 50 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|Any CPU.Build.0 = Release|Any CPU 51 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|ARM.ActiveCfg = Release|Any CPU 52 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|ARM.Build.0 = Release|Any CPU 53 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|x64.ActiveCfg = Release|Any CPU 54 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|x64.Build.0 = Release|Any CPU 55 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|x86.ActiveCfg = Release|Any CPU 56 | {0617BA40-3198-4593-9FD6-8CBAA47CAAA9}.Release|x86.Build.0 = Release|Any CPU 57 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 58 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|Any CPU.Build.0 = Debug|Any CPU 59 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|ARM.ActiveCfg = Debug|Any CPU 60 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|ARM.Build.0 = Debug|Any CPU 61 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|x64.ActiveCfg = Debug|Any CPU 62 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|x64.Build.0 = Debug|Any CPU 63 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|x86.ActiveCfg = Debug|Any CPU 64 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Debug|x86.Build.0 = Debug|Any CPU 65 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|Any CPU.ActiveCfg = Release|Any CPU 66 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|Any CPU.Build.0 = Release|Any CPU 67 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|ARM.ActiveCfg = Release|Any CPU 68 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|ARM.Build.0 = Release|Any CPU 69 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|x64.ActiveCfg = Release|Any CPU 70 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|x64.Build.0 = Release|Any CPU 71 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|x86.ActiveCfg = Release|Any CPU 72 | {4FBB9DA2-A85E-4E45-8C2F-F7FACBB5C9A1}.Release|x86.Build.0 = Release|Any CPU 73 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|Any CPU.ActiveCfg = Debug|x86 74 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|ARM.ActiveCfg = Debug|ARM 75 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|ARM.Build.0 = Debug|ARM 76 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|ARM.Deploy.0 = Debug|ARM 77 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|x64.ActiveCfg = Debug|x64 78 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|x64.Build.0 = Debug|x64 79 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|x64.Deploy.0 = Debug|x64 80 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|x86.ActiveCfg = Debug|x86 81 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|x86.Build.0 = Debug|x86 82 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Debug|x86.Deploy.0 = Debug|x86 83 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|Any CPU.ActiveCfg = Release|x86 84 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|ARM.ActiveCfg = Release|ARM 85 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|ARM.Build.0 = Release|ARM 86 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|ARM.Deploy.0 = Release|ARM 87 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|x64.ActiveCfg = Release|x64 88 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|x64.Build.0 = Release|x64 89 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|x64.Deploy.0 = Release|x64 90 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|x86.ActiveCfg = Release|x86 91 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|x86.Build.0 = Release|x86 92 | {BFD0F7BC-A9D5-4571-97C3-BB51FCEF532E}.Release|x86.Deploy.0 = Release|x86 93 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 94 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|Any CPU.Build.0 = Debug|Any CPU 95 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|ARM.ActiveCfg = Debug|ARM 96 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|ARM.Build.0 = Debug|ARM 97 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|x64.ActiveCfg = Debug|x64 98 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|x64.Build.0 = Debug|x64 99 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|x86.ActiveCfg = Debug|x86 100 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Debug|x86.Build.0 = Debug|x86 101 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|Any CPU.ActiveCfg = Release|Any CPU 102 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|Any CPU.Build.0 = Release|Any CPU 103 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|ARM.ActiveCfg = Release|ARM 104 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|ARM.Build.0 = Release|ARM 105 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|x64.ActiveCfg = Release|x64 106 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|x64.Build.0 = Release|x64 107 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|x86.ActiveCfg = Release|x86 108 | {019D83B0-9B94-462D-8E98-473FA8F71F8D}.Release|x86.Build.0 = Release|x86 109 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 110 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|Any CPU.Build.0 = Debug|Any CPU 111 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|ARM.ActiveCfg = Debug|Any CPU 112 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|ARM.Build.0 = Debug|Any CPU 113 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|x64.ActiveCfg = Debug|Any CPU 114 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|x64.Build.0 = Debug|Any CPU 115 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|x86.ActiveCfg = Debug|Any CPU 116 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Debug|x86.Build.0 = Debug|Any CPU 117 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|Any CPU.ActiveCfg = Release|Any CPU 118 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|Any CPU.Build.0 = Release|Any CPU 119 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|ARM.ActiveCfg = Release|Any CPU 120 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|ARM.Build.0 = Release|Any CPU 121 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|x64.ActiveCfg = Release|Any CPU 122 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|x64.Build.0 = Release|Any CPU 123 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|x86.ActiveCfg = Release|Any CPU 124 | {663BF254-2098-4DD7-89A5-44ECDE343815}.Release|x86.Build.0 = Release|Any CPU 125 | EndGlobalSection 126 | GlobalSection(SolutionProperties) = preSolution 127 | HideSolutionNode = FALSE 128 | EndGlobalSection 129 | EndGlobal 130 | --------------------------------------------------------------------------------