Skip to content

Commit

Permalink
Added Support For iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Charuwaka committed Mar 13, 2018
1 parent 3f78b54 commit 19ab2fc
Show file tree
Hide file tree
Showing 129 changed files with 180 additions and 59 deletions.
Binary file modified .vs/XFormsLogger/v14/.suo
Binary file not shown.
12 changes: 9 additions & 3 deletions Package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>XFormsLogger</id>
<version>1.0.0</version>
<version>1.0.1</version>
<title>XForms Logger For Xamarin Forms PCL logging</title>
<authors>charwaka</authors>
<owners>charwaka</owners>
Expand All @@ -11,10 +11,10 @@
<iconUrl>https://github.com/Charuwaka/XFormsLogger/blob/master/XFormsLogger.Droid/Assets/bearlog.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>To log events in your Xamarin.Forms application</description>
<releaseNotes>Log All Info</releaseNotes>
<releaseNotes>Log All Info from Xamarin Forms PCL</releaseNotes>
<copyright>Copyright 2018</copyright>
<summary>To log events in your Xamarin or Xamarin.Forms application</summary>
<tags>xamarin, pcl, xam.pcl, plugin, plugin for xamarin, windows phone, uwp, android, xamarin.forms, ios</tags>
<tags>xamarin, pcl, xam.pcl, plugin, plugin for xamarin,android, xamarin.forms, ios</tags>
<dependencies>
<group targetFramework="net">
</group>
Expand Down Expand Up @@ -48,5 +48,11 @@
<file src="XFormsLogger.Abstractions\bin\Release\XFormsLogger.Abstractions.dll" target="lib\MonoAndroid10\XFormsLogger.Abstractions.dll" />
<file src="XFormsLogger.Abstractions\bin\Release\XFormsLogger.Abstractions.pdb" target="lib\MonoAndroid10\XFormsLogger.Abstractions.pdb" />

<!--Xamarin.iOS-->
<file src="XFormsLogger.iOS\bin\Release\XFormsLogger.dll" target="lib\MonoAndroid10\XFormsLogger.dll" />
<file src="XFormsLogger.iOS\bin\Release\XFormsLogger.pdb" target="lib\MonoAndroid10\XFormsLogger.pdb" />
<file src="XFormsLogger.Abstractions\bin\Release\XFormsLogger.Abstractions.dll" target="lib\MonoAndroid10\XFormsLogger.Abstractions.dll" />
<file src="XFormsLogger.Abstractions\bin\Release\XFormsLogger.Abstractions.pdb" target="lib\MonoAndroid10\XFormsLogger.Abstractions.pdb" />

</files>
</package>
Binary file removed XFormsLogger.1.0.0.nupkg
Binary file not shown.
Binary file added XFormsLogger.1.0.1.nupkg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\bin\Debug\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\bin\Debug\XFormsLogger.Abstractions.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\obj\Debug\XFormsLogger.Abstractions.csprojResolveAssemblyReference.cache
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\obj\Debug\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\obj\Debug\XFormsLogger.Abstractions.pdb
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\bin\Release\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\bin\Release\XFormsLogger.Abstractions.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\obj\Release\XFormsLogger.Abstractions.csprojResolveAssemblyReference.cache
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\obj\Release\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Abstractions\obj\Release\XFormsLogger.Abstractions.pdb
Binary file not shown.
Binary file not shown.
44 changes: 0 additions & 44 deletions XFormsLogger.Droid/CrossXFormsLogger.cs

This file was deleted.

1 change: 0 additions & 1 deletion XFormsLogger.Droid/XFormsLogger.Droid.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup>
<Compile Include="CrossXFormsLogger.cs" />
<Compile Include="Resources\Resource.Designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="XFormsLoggerAndroid.cs" />
Expand Down
7 changes: 4 additions & 3 deletions XFormsLogger.Droid/XFormsLoggerAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

namespace XFormsLogger
{
public class XFormsLoggerAndroid : XFormsLoggerBase
public class XFormsLogger : XFormsLoggerBase
{
private string _fileName="Plog.txt";
private string _fileName= "XFormsLog.txt";
private string _logfilePath;
protected override void SetLogFileName(string filename)
{
Expand Down Expand Up @@ -53,4 +53,5 @@ protected override void LogInfo(string exception,LogLevel loglevel)
}
}
}
}
}

Binary file modified XFormsLogger.Droid/bin/Debug/XFormsLogger.Abstractions.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Debug/XFormsLogger.Abstractions.dll.mdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Debug/XFormsLogger.Abstractions.pdb
Binary file not shown.
Binary file removed XFormsLogger.Droid/bin/Debug/XFormsLogger.Droid.dll
Binary file not shown.
Binary file not shown.
Binary file added XFormsLogger.Droid/bin/Debug/XFormsLogger.dll
Binary file not shown.
Binary file added XFormsLogger.Droid/bin/Debug/XFormsLogger.dll.mdb
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Release/XFormsLogger.Abstractions.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Release/XFormsLogger.Abstractions.dll.mdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Release/XFormsLogger.Abstractions.pdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Release/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Release/XFormsLogger.dll.mdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/bin/Release/XFormsLogger.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.Droid.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.Droid.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.Droid.XFormsLogger.Droid.apk
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.Droid.XFormsLogger.Droid-Signed.apk
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\bin\Debug\XFormsLogger.Abstractions.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\XFormsLogger.Droid.csprojResolveAssemblyReference.cache
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\XFormsLogger.Droid.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\XFormsLogger.Droid.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\XFormsLogger.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\android\bin\XFormsLogger.Droid.XFormsLogger.Droid.apk
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\R.cs.flag
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\uploadflags.txt
Binary file not shown.
Binary file removed XFormsLogger.Droid/obj/Debug/XFormsLogger.Droid.dll
Binary file not shown.
Binary file added XFormsLogger.Droid/obj/Debug/XFormsLogger.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Debug/android/bin/classes.dex
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Debug/android/bin/packaged_resources
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public static String getApiPackageName ()

class MonoPackageManager_Resources {
public static final String[] Assemblies = new String[]{
/* We need to ensure that "XFormsLogger.Droid.dll" comes first in this list. */
"XFormsLogger.Droid.dll",
/* We need to ensure that "XFormsLogger.dll" comes first in this list. */
"XFormsLogger.dll",
"XFormsLogger.Abstractions.dll",
};
public static final String[] Dependencies = new String[]{
Expand Down
Binary file added XFormsLogger.Droid/obj/Debug/assets/bearlog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion XFormsLogger.Droid/obj/Debug/resolved_assemblies.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\android\assets\XFormsLogger.Droid.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\android\assets\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\android\assets\Java.Interop.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\android\assets\Mono.Android.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.Droid\obj\Debug\android\assets\System.Core.dll
Expand Down
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/XFormsLogger.pdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/Java.Interop.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/Mono.Android.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/Mono.Android.pdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/System.Core.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/System.Core.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/System.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/System.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/XFormsLogger.dll.mdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/mscorlib.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/assets/mscorlib.pdb
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/android/bin/packaged_resources
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/linksrc/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger.Droid/obj/Release/linksrc/XFormsLogger.dll.mdb
Binary file not shown.
36 changes: 36 additions & 0 deletions XFormsLogger.iOS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("XFormsLogger.iOS")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XFormsLogger.iOS")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("52b85e53-97b1-4234-b904-25aaf401f97a")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
53 changes: 53 additions & 0 deletions XFormsLogger.iOS/XFormsLogger.iOS.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{52B85E53-97B1-4234-B904-25AAF401F97A}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>XFormsLogger</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>XFormsLogger</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>TRACE;__UNIFIED__;__MOBILE__;__IOS__;DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="XFormsLoggerIOS.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XFormsLogger.Abstractions\XFormsLogger.Abstractions.csproj">
<Project>{B165BE17-D1A1-4B36-9FFC-9518ED6DA5C6}</Project>
<Name>XFormsLogger.Abstractions</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
</Project>
46 changes: 46 additions & 0 deletions XFormsLogger.iOS/XFormsLoggerIOS.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using XFormsLogger.Abstractions;

namespace XFormsLogger.iOS
{
public class XFormsLogger : XFormsLoggerBase
{
private string _fileName = "XFormsLog.txt";
private string _logfilePath;
protected override void SetLogFileName(string filename)
{
_fileName = filename;
}

protected override string GetLogFilePath()
{
return _logfilePath;
}
public string FilePath
{
get
{
string documentsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string libraryPath = Path.Combine(documentsPath, "..", "Library");
_logfilePath = Path.Combine(libraryPath, _fileName);
return _logfilePath;
}
}

protected override void LogInfo(string exception, LogLevel loglevel)
{
try
{
var errorMessage = String.Format("{0}:{1} DateTime:{2}", loglevel.ToString(), exception, DateTime.Now + System.Environment.NewLine);
File.AppendAllText(FilePath, errorMessage, UTF8Encoding.UTF8);
}
catch (Exception ex)
{

}
}
}
}
Binary file not shown.
Binary file not shown.
Binary file added XFormsLogger.iOS/bin/Debug/XFormsLogger.dll
Binary file not shown.
Binary file added XFormsLogger.iOS/bin/Debug/XFormsLogger.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added XFormsLogger.iOS/bin/Release/XFormsLogger.dll
Binary file not shown.
Binary file added XFormsLogger.iOS/bin/Release/XFormsLogger.pdb
Binary file not shown.
Binary file not shown.
Empty file.
Empty file.
Empty file.
Binary file added XFormsLogger.iOS/obj/Debug/XFormsLogger.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Debug\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Debug\XFormsLogger.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Debug\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Debug\XFormsLogger.Abstractions.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Debug\optimized\
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Debug\XFormsLogger.iOS.csprojResolveAssemblyReference.cache
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Debug\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Debug\XFormsLogger.pdb
Binary file not shown.
Binary file added XFormsLogger.iOS/obj/Debug/XFormsLogger.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions XFormsLogger.iOS/obj/Debug/build-signature/signature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build: a4c7fa11-db74-4fec-92f4-ab3607c48c29
Binary file not shown.
Empty file.
Empty file.
Empty file.
Binary file added XFormsLogger.iOS/obj/Release/XFormsLogger.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Release\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Release\XFormsLogger.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Release\XFormsLogger.Abstractions.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\bin\Release\XFormsLogger.Abstractions.pdb
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Release\optimized\
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Release\XFormsLogger.iOS.csprojResolveAssemblyReference.cache
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Release\XFormsLogger.dll
C:\Users\thupili.charwaka\Documents\Visual Studio 2015\Projects\XFormsLogger\XFormsLogger.iOS\obj\Release\XFormsLogger.pdb
Binary file not shown.
Binary file added XFormsLogger.iOS/obj/Release/XFormsLogger.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions XFormsLogger.iOS/obj/Release/build-signature/signature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build: 72e9afe5-5ff9-44bb-9b69-f3beeb57f4b1
6 changes: 6 additions & 0 deletions XFormsLogger.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Nuspec", "Nuspec", "{A88C20
Package.nuspec = Package.nuspec
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XFormsLogger.iOS", "XFormsLogger.iOS\XFormsLogger.iOS.csproj", "{52B85E53-97B1-4234-B904-25AAF401F97A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -34,6 +36,10 @@ Global
{B165BE17-D1A1-4B36-9FFC-9518ED6DA5C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B165BE17-D1A1-4B36-9FFC-9518ED6DA5C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B165BE17-D1A1-4B36-9FFC-9518ED6DA5C6}.Release|Any CPU.Build.0 = Release|Any CPU
{52B85E53-97B1-4234-B904-25AAF401F97A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{52B85E53-97B1-4234-B904-25AAF401F97A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{52B85E53-97B1-4234-B904-25AAF401F97A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{52B85E53-97B1-4234-B904-25AAF401F97A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Binary file modified XFormsLogger/bin/Debug/XFormsLogger.Abstractions.dll
Binary file not shown.
Binary file modified XFormsLogger/bin/Debug/XFormsLogger.Abstractions.pdb
Binary file not shown.
Binary file modified XFormsLogger/bin/Debug/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger/bin/Debug/XFormsLogger.pdb
Binary file not shown.
Binary file modified XFormsLogger/bin/Release/XFormsLogger.Abstractions.dll
Binary file not shown.
Binary file modified XFormsLogger/bin/Release/XFormsLogger.Abstractions.pdb
Binary file not shown.
Binary file modified XFormsLogger/bin/Release/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger/bin/Release/XFormsLogger.pdb
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger/obj/Debug/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger/obj/Debug/XFormsLogger.pdb
Binary file not shown.
Binary file not shown.
Binary file modified XFormsLogger/obj/Release/XFormsLogger.dll
Binary file not shown.
Binary file modified XFormsLogger/obj/Release/XFormsLogger.pdb
Binary file not shown.

0 comments on commit 19ab2fc

Please sign in to comment.