├── .gitignore ├── BuildingXamarinStudioAddins.sln ├── BuildingXamarinStudioAddins ├── BuildingXamarinStudioAddins.csproj ├── Commands │ ├── ConfigureApiKeyCommand.cs │ └── TranslateStringCommand.cs ├── Dialogs │ └── ConfigureApiKeyDialog.cs ├── Helpers │ ├── ExtensionPointHelper.cs │ ├── PropertyKeys.cs │ ├── SyntaxTokenHelper.cs │ └── TranslationHelper.cs ├── Properties │ ├── AddinInfo.cs │ ├── AssemblyInfo.cs │ └── Manifest.addin.xml ├── StartupHandler.cs └── packages.config ├── LICENSE ├── README.md ├── addin-project.xml ├── images ├── add-addin-reference.gif ├── add-addin-repo.gif ├── addin-info.png ├── addin-maker.gif ├── addin-project-structure.png ├── addin-repo-config.png ├── addin-repo-new-addin.png ├── deployed-addin.png ├── install-mpack.png ├── logo-horizontal.png ├── new-addin-project.png ├── publish-addin.png ├── running-your-addin.png └── translate-demo.gif ├── package_mpack.sh └── packages ├── Microsoft.CodeAnalysis.1.3.2 ├── Microsoft.CodeAnalysis.1.3.2.nupkg └── ThirdPartyNotices.rtf ├── Microsoft.CodeAnalysis.Analyzers.1.1.0 ├── Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg ├── ThirdPartyNotices.rtf ├── analyzers │ └── dotnet │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.Analyzers.dll │ │ └── Microsoft.CodeAnalysis.CSharp.Analyzers.dll │ │ └── vb │ │ ├── Microsoft.CodeAnalysis.Analyzers.dll │ │ └── Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── Microsoft.CodeAnalysis.CSharp.1.3.2 ├── Microsoft.CodeAnalysis.CSharp.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.CSharp.dll │ └── Microsoft.CodeAnalysis.CSharp.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.CSharp.dll │ └── Microsoft.CodeAnalysis.CSharp.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.CSharp.dll │ └── Microsoft.CodeAnalysis.CSharp.xml ├── Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2 ├── Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.xml ├── Microsoft.CodeAnalysis.Common.1.3.2 ├── Microsoft.CodeAnalysis.Common.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.dll │ └── Microsoft.CodeAnalysis.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.dll │ └── Microsoft.CodeAnalysis.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.dll │ └── Microsoft.CodeAnalysis.xml ├── Microsoft.CodeAnalysis.VisualBasic.1.3.2 ├── Microsoft.CodeAnalysis.VisualBasic.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ └── Microsoft.CodeAnalysis.VisualBasic.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ └── Microsoft.CodeAnalysis.VisualBasic.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ └── Microsoft.CodeAnalysis.VisualBasic.xml ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2 ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml ├── Microsoft.CodeAnalysis.Workspaces.Common.1.3.2 ├── Microsoft.CodeAnalysis.Workspaces.Common.1.3.2.nupkg ├── ThirdPartyNotices.rtf └── lib │ ├── net45 │ ├── Microsoft.CodeAnalysis.Workspaces.Desktop.dll │ ├── Microsoft.CodeAnalysis.Workspaces.Desktop.xml │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ └── Microsoft.CodeAnalysis.Workspaces.xml │ ├── netstandard1.3 │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ └── Microsoft.CodeAnalysis.Workspaces.xml │ └── portable-net45+win8 │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ └── Microsoft.CodeAnalysis.Workspaces.xml ├── Microsoft.Composition.1.0.27 ├── License-Stable.rtf ├── Microsoft.Composition.1.0.27.nupkg └── lib │ └── portable-net45+win8+wp8+wpa81 │ ├── System.Composition.AttributedModel.XML │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Convention.xml │ ├── System.Composition.Hosting.XML │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.XML │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.XML │ └── System.Composition.TypedParts.dll ├── MonoDevelop.Addins.0.3.3 ├── MonoDevelop.Addins.0.3.3.nupkg └── build │ └── net40 │ ├── ICSharpCode.SharpZipLib.dll │ ├── Mono.Addins.Setup.dll │ ├── Mono.Addins.dll │ ├── MonoDevelop.Addins.Tasks.dll │ └── MonoDevelop.Addins.targets ├── Newtonsoft.Json.9.0.1 ├── Newtonsoft.Json.9.0.1.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── System.Collections.4.0.0 ├── License.rtf ├── System.Collections.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Collections.dll │ ├── System.Collections.xml │ ├── de │ │ └── System.Collections.xml │ ├── es │ │ └── System.Collections.xml │ ├── fr │ │ └── System.Collections.xml │ ├── it │ │ └── System.Collections.xml │ ├── ja │ │ └── System.Collections.xml │ ├── ko │ │ └── System.Collections.xml │ ├── ru │ │ └── System.Collections.xml │ ├── zh-hans │ │ └── System.Collections.xml │ └── zh-hant │ │ └── System.Collections.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Collections.Immutable.1.1.37 ├── System.Collections.Immutable.1.1.37.nupkg └── lib │ ├── dotnet │ ├── System.Collections.Immutable.dll │ └── System.Collections.Immutable.xml │ └── portable-net45+win8+wp8+wpa81 │ ├── System.Collections.Immutable.dll │ └── System.Collections.Immutable.xml ├── System.Diagnostics.Debug.4.0.0 ├── License.rtf ├── System.Diagnostics.Debug.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.xml │ ├── de │ │ └── System.Diagnostics.Debug.xml │ ├── es │ │ └── System.Diagnostics.Debug.xml │ ├── fr │ │ └── System.Diagnostics.Debug.xml │ ├── it │ │ └── System.Diagnostics.Debug.xml │ ├── ja │ │ └── System.Diagnostics.Debug.xml │ ├── ko │ │ └── System.Diagnostics.Debug.xml │ ├── ru │ │ └── System.Diagnostics.Debug.xml │ ├── zh-hans │ │ └── System.Diagnostics.Debug.xml │ └── zh-hant │ │ └── System.Diagnostics.Debug.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Globalization.4.0.0 ├── License.rtf ├── System.Globalization.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Globalization.dll │ ├── System.Globalization.xml │ ├── de │ │ └── System.Globalization.xml │ ├── es │ │ └── System.Globalization.xml │ ├── fr │ │ └── System.Globalization.xml │ ├── it │ │ └── System.Globalization.xml │ ├── ja │ │ └── System.Globalization.xml │ ├── ko │ │ └── System.Globalization.xml │ ├── ru │ │ └── System.Globalization.xml │ ├── zh-hans │ │ └── System.Globalization.xml │ └── zh-hant │ │ └── System.Globalization.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Linq.4.0.0 ├── System.Linq.4.0.0.nupkg ├── lib │ ├── dotnet │ │ └── System.Linq.dll │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Linq.dll │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ └── wpa81 │ │ └── _._ └── ref │ ├── dotnet │ ├── System.Linq.dll │ ├── System.Linq.xml │ ├── de │ │ └── System.Linq.xml │ ├── es │ │ └── System.Linq.xml │ ├── fr │ │ └── System.Linq.xml │ ├── it │ │ └── System.Linq.xml │ ├── ja │ │ └── System.Linq.xml │ ├── ko │ │ └── System.Linq.xml │ ├── ru │ │ └── System.Linq.xml │ ├── zh-hans │ │ └── System.Linq.xml │ └── zh-hant │ │ └── System.Linq.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Linq.dll │ └── System.Linq.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ └── wpa81 │ └── _._ ├── System.Reflection.Metadata.1.2.0 ├── System.Reflection.Metadata.1.2.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt └── lib │ ├── netstandard1.1 │ ├── System.Reflection.Metadata.dll │ └── System.Reflection.Metadata.xml │ └── portable-net45+win8 │ ├── System.Reflection.Metadata.dll │ └── System.Reflection.Metadata.xml ├── System.Resources.ResourceManager.4.0.0 ├── System.Resources.ResourceManager.4.0.0.nupkg ├── lib │ ├── DNXCore50 │ │ └── System.Resources.ResourceManager.dll │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Resources.ResourceManager.dll │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ └── wpa81 │ │ └── _._ ├── ref │ ├── dotnet │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.ResourceManager.xml │ │ ├── de │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── es │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── fr │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── it │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── ja │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── ko │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── ru │ │ │ └── System.Resources.ResourceManager.xml │ │ ├── zh-hans │ │ │ └── System.Resources.ResourceManager.xml │ │ └── zh-hant │ │ │ └── System.Resources.ResourceManager.xml │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ ├── System.Resources.ResourceManager.dll │ │ └── System.Resources.ResourceManager.xml │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ └── wpa81 │ │ └── _._ └── runtimes │ └── win8-aot │ └── lib │ └── netcore50 │ └── System.Resources.ResourceManager.dll ├── System.Runtime.4.0.0 ├── License.rtf ├── System.Runtime.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── de │ │ └── System.Runtime.xml │ ├── es │ │ └── System.Runtime.xml │ ├── fr │ │ └── System.Runtime.xml │ ├── it │ │ └── System.Runtime.xml │ ├── ja │ │ └── System.Runtime.xml │ ├── ko │ │ └── System.Runtime.xml │ ├── ru │ │ └── System.Runtime.xml │ ├── zh-hans │ │ └── System.Runtime.xml │ └── zh-hant │ │ └── System.Runtime.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── System.Runtime.Extensions.4.0.0 ├── License.rtf ├── System.Runtime.Extensions.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ └── System.Threading.4.0.0 ├── License.rtf ├── System.Threading.4.0.0.nupkg ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net45 │ └── _._ ├── win8 │ └── _._ ├── wp80 │ └── _._ ├── wpa81 │ └── _._ ├── xamarinios10 │ └── _._ └── xamarinmac20 │ └── _._ └── ref ├── MonoAndroid10 └── _._ ├── MonoTouch10 └── _._ ├── dotnet ├── System.Threading.dll ├── System.Threading.xml ├── de │ └── System.Threading.xml ├── es │ └── System.Threading.xml ├── fr │ └── System.Threading.xml ├── it │ └── System.Threading.xml ├── ja │ └── System.Threading.xml ├── ko │ └── System.Threading.xml ├── ru │ └── System.Threading.xml ├── zh-hans │ └── System.Threading.xml └── zh-hant │ └── System.Threading.xml ├── net45 └── _._ ├── netcore50 ├── System.Threading.dll ├── System.Threading.xml ├── de │ └── System.Threading.xml ├── es │ └── System.Threading.xml ├── fr │ └── System.Threading.xml ├── it │ └── System.Threading.xml ├── ja │ └── System.Threading.xml ├── ko │ └── System.Threading.xml ├── ru │ └── System.Threading.xml ├── zh-hans │ └── System.Threading.xml └── zh-hant │ └── System.Threading.xml ├── win8 └── _._ ├── wp80 └── _._ ├── wpa81 └── _._ ├── xamarinios10 └── _._ └── xamarinmac20 └── _._ /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins.sln -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/BuildingXamarinStudioAddins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/BuildingXamarinStudioAddins.csproj -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Commands/ConfigureApiKeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Commands/ConfigureApiKeyCommand.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Commands/TranslateStringCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Commands/TranslateStringCommand.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Dialogs/ConfigureApiKeyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Dialogs/ConfigureApiKeyDialog.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Helpers/ExtensionPointHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Helpers/ExtensionPointHelper.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Helpers/PropertyKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Helpers/PropertyKeys.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Helpers/SyntaxTokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Helpers/SyntaxTokenHelper.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Helpers/TranslationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Helpers/TranslationHelper.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Properties/AddinInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Properties/AddinInfo.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/Properties/Manifest.addin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/Properties/Manifest.addin.xml -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/StartupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/StartupHandler.cs -------------------------------------------------------------------------------- /BuildingXamarinStudioAddins/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/BuildingXamarinStudioAddins/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/README.md -------------------------------------------------------------------------------- /addin-project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/addin-project.xml -------------------------------------------------------------------------------- /images/add-addin-reference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/add-addin-reference.gif -------------------------------------------------------------------------------- /images/add-addin-repo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/add-addin-repo.gif -------------------------------------------------------------------------------- /images/addin-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/addin-info.png -------------------------------------------------------------------------------- /images/addin-maker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/addin-maker.gif -------------------------------------------------------------------------------- /images/addin-project-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/addin-project-structure.png -------------------------------------------------------------------------------- /images/addin-repo-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/addin-repo-config.png -------------------------------------------------------------------------------- /images/addin-repo-new-addin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/addin-repo-new-addin.png -------------------------------------------------------------------------------- /images/deployed-addin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/deployed-addin.png -------------------------------------------------------------------------------- /images/install-mpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/install-mpack.png -------------------------------------------------------------------------------- /images/logo-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/logo-horizontal.png -------------------------------------------------------------------------------- /images/new-addin-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/new-addin-project.png -------------------------------------------------------------------------------- /images/publish-addin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/publish-addin.png -------------------------------------------------------------------------------- /images/running-your-addin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/running-your-addin.png -------------------------------------------------------------------------------- /images/translate-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/images/translate-demo.gif -------------------------------------------------------------------------------- /package_mpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/package_mpack.sh -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.1.3.2/Microsoft.CodeAnalysis.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.1.3.2/Microsoft.CodeAnalysis.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Analyzers.1.1.0/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/Microsoft.CodeAnalysis.CSharp.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/Microsoft.CodeAnalysis.CSharp.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/Microsoft.CodeAnalysis.Common.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/Microsoft.CodeAnalysis.Common.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/Microsoft.CodeAnalysis.VisualBasic.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/Microsoft.CodeAnalysis.VisualBasic.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/net45/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.VisualBasic.Workspaces.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/net45/Microsoft.CodeAnalysis.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.CodeAnalysis.Workspaces.Common.1.3.2/lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.xml -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/License-Stable.rtf -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/Microsoft.Composition.1.0.27.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/Microsoft.Composition.1.0.27.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.XML -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.xml -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.XML -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.XML -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.XML -------------------------------------------------------------------------------- /packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /packages/MonoDevelop.Addins.0.3.3/MonoDevelop.Addins.0.3.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/MonoDevelop.Addins.0.3.3/MonoDevelop.Addins.0.3.3.nupkg -------------------------------------------------------------------------------- /packages/MonoDevelop.Addins.0.3.3/build/net40/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/MonoDevelop.Addins.0.3.3/build/net40/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /packages/MonoDevelop.Addins.0.3.3/build/net40/Mono.Addins.Setup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/MonoDevelop.Addins.0.3.3/build/net40/Mono.Addins.Setup.dll -------------------------------------------------------------------------------- /packages/MonoDevelop.Addins.0.3.3/build/net40/Mono.Addins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/MonoDevelop.Addins.0.3.3/build/net40/Mono.Addins.dll -------------------------------------------------------------------------------- /packages/MonoDevelop.Addins.0.3.3/build/net40/MonoDevelop.Addins.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/MonoDevelop.Addins.0.3.3/build/net40/MonoDevelop.Addins.Tasks.dll -------------------------------------------------------------------------------- /packages/MonoDevelop.Addins.0.3.3/build/net40/MonoDevelop.Addins.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/MonoDevelop.Addins.0.3.3/build/net40/MonoDevelop.Addins.targets -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/Newtonsoft.Json.9.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/System.Collections.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/System.Collections.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/System.Collections.dll -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/de/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/de/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/es/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/es/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/fr/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/fr/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/it/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/it/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/ja/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/ja/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/ko/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/ko/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/ru/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/ru/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/zh-hans/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/zh-hans/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/dotnet/zh-hant/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/dotnet/zh-hant/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/System.Collections.dll -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/de/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/de/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/es/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/es/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/fr/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/fr/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/it/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/it/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/ja/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/ja/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/ko/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/ko/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/ru/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/ru/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/zh-hans/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/zh-hans/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/netcore50/zh-hant/System.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.4.0.0/ref/netcore50/zh-hant/System.Collections.xml -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/System.Collections.Immutable.1.1.37.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.Immutable.1.1.37/System.Collections.Immutable.1.1.37.nupkg -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.xml -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.Immutable.1.1.37/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/System.Collections.Immutable.1.1.37/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Collections.Immutable.1.1.37/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/System.Diagnostics.Debug.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/System.Diagnostics.Debug.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/de/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/de/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/es/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/es/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/fr/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/fr/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/it/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/it/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ja/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ja/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ko/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ko/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ru/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/ru/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hans/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hans/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hant/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/dotnet/zh-hant/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/de/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/de/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/es/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/es/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/fr/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/fr/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/it/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/it/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ja/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ja/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ko/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ko/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ru/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/ru/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hans/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hans/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hant/System.Diagnostics.Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Diagnostics.Debug.4.0.0/ref/netcore50/zh-hant/System.Diagnostics.Debug.xml -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.Debug.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/System.Globalization.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/System.Globalization.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.dll -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/de/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/de/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/es/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/es/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/fr/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/fr/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/it/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/it/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/ja/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/ja/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/ko/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/ko/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/ru/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/ru/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/zh-hans/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/zh-hans/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/dotnet/zh-hant/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/dotnet/zh-hant/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.dll -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/de/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/de/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/es/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/es/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/fr/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/fr/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/it/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/it/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/ja/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/ja/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/ko/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/ko/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/ru/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/ru/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/zh-hans/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/zh-hans/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/netcore50/zh-hant/System.Globalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Globalization.4.0.0/ref/netcore50/zh-hant/System.Globalization.xml -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Globalization.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/System.Linq.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/System.Linq.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/dotnet/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/lib/dotnet/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/netcore50/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/lib/netcore50/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/de/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/de/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/es/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/es/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/fr/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/fr/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/it/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/it/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/ja/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/ja/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/ko/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/ko/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/ru/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/ru/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/zh-hans/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/zh-hans/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/dotnet/zh-hant/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/dotnet/zh-hant/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/netcore50/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/netcore50/System.Linq.dll -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/netcore50/System.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Linq.4.0.0/ref/netcore50/System.Linq.xml -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Linq.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/System.Reflection.Metadata.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/System.Reflection.Metadata.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/netstandard1.1/System.Reflection.Metadata.xml -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Reflection.Metadata.1.2.0/lib/portable-net45+win8/System.Reflection.Metadata.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/System.Resources.ResourceManager.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/System.Resources.ResourceManager.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/DNXCore50/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/lib/DNXCore50/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/netcore50/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/lib/netcore50/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/de/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/de/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/es/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/es/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/fr/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/fr/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/it/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/it/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/ja/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/ja/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/ko/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/ko/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/ru/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/ru/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/zh-hans/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/zh-hans/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/zh-hant/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/dotnet/zh-hant/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/netcore50/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/netcore50/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/netcore50/System.Resources.ResourceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/ref/netcore50/System.Resources.ResourceManager.xml -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Resources.ResourceManager.4.0.0/runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Resources.ResourceManager.4.0.0/runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/System.Runtime.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/System.Runtime.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/dotnet/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/dotnet/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.dll -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/de/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/es/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/fr/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/it/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/ja/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/ko/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/ru/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/netcore50/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.4.0.0/ref/netcore50/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/System.Runtime.Extensions.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/System.Runtime.Extensions.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/de/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/de/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/es/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/es/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/fr/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/fr/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/it/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/it/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ja/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ja/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ko/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ko/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ru/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/ru/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hans/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hans/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hant/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/dotnet/zh-hant/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/de/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/de/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/es/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/es/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/fr/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/fr/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/it/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/it/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ja/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ja/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ko/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ko/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ru/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/ru/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hans/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hans/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hant/System.Runtime.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Runtime.Extensions.4.0.0/ref/netcore50/zh-hant/System.Runtime.Extensions.xml -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/License.rtf -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/System.Threading.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/System.Threading.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/System.Threading.dll -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/de/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/de/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/es/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/es/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/fr/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/fr/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/it/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/it/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/ja/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/ja/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/ko/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/ko/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/ru/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/ru/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/zh-hans/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/zh-hans/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/dotnet/zh-hant/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/dotnet/zh-hant/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/System.Threading.dll -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/de/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/de/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/es/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/es/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/fr/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/fr/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/it/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/it/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/ja/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/ja/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/ko/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/ko/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/ru/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/ru/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/zh-hans/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/zh-hans/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/netcore50/zh-hant/System.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/building-addins-for-xamarin-studio/HEAD/packages/System.Threading.4.0.0/ref/netcore50/zh-hant/System.Threading.xml -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------