Code Monkey home page Code Monkey logo

prism-samples-forms's People

Contributors

adam-- avatar almirvuk avatar angusgraham avatar bartlannoeye avatar brianlagunas avatar d3fkn1ght avatar dansiegel avatar ellisnet avatar experimentsandideas avatar hnabbasi avatar j-a-ellis avatar jbachelor avatar jmegner avatar rlittlesii avatar sanyandreichuk avatar scarlettcode avatar sogetimobilesig avatar stefanossendorf avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

prism-samples-forms's Issues

viewmodels don't fire if moved to seperate PCL project.

for Testing purposes we have moved the viewmodels in the sample to Example.ViewModels

however the commands stop firing when the viewmodels are in seperate project?

The PCL with the views does reference the Example.ViewModels project.

guidance needed?

Unhandled Exception on a Master Detail project when hitting back button

Good afternoon Brian

I'm using Prism for a Xamarin Forms project, I have followed your master detail example but when I hit the back button I've got this error "Java.Lang.IllegalStateException: Activity has been destroyed", I downloaded your example to see i I was doing something wrong on my project but the same thing happens.
Do you have any idea why or how to stop fix the issue?

Many thanks for all your work
Jose coelho

[Update] 09 MasterDetail

Sample

09-MasterDetail

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • All platforms should show a Hamburger icon
  • Show use with a ContentPage
  • Show use with a TabbedPage

XamlCTask fails unexpectedly

I downloaded the repro and opened the hamburger menu solution. When I build it, it gives me the error "The XamlCTask failed unexpectedly". I just want to compare my hamburger menu solution to yours on a device to see if your android application has the same navigation issue as mine.

My problem: I'm on a detail page and switch to another detail page via the menu. When I hit the back button, it backs me all the way out of the app instead of the detail page that I was just on. I've followed the hamburger solution code but I want to see it work on an android device so see if you have the same issue as me or if I've done something wrong. Thanks

[Update] 19 NavigationMode

Sample

19-NavigationMode

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Get the NavigationMode in OnNavigatedTo & display the mode on the Page

TabbedNavigation example - IsActiveChanged do not work

I tried to run TabbedNavigation example. IsActive at ChildViewModelBase is correctly set when I change selected tab but it seems like IsActiveChanged event does not work - no Debug.WriteLine record and even breakpoint is not hitted.

I did not make any changes, I just downloaded this example and runned it at android simulator.

[Update] 08 Tabbed Navigation

Sample

08-TabbedNavigation

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Create tabs via querystring
  • Select a tab (not the first one) via the querystring
  • Show how to change tabs with the NavigationService

Add possibility to navigate to page, *without duplicating* it on NavigationStack.

Actually it's not a bug, just to be clear.
On my previous project, when I didn't use Prims, but OOTB XF, I'd to extend NavigationService, so that navigation between pages, was "duplicate aware".
In a few words - it was about to to Push page, without duplicate, in order to avoid user multiple time clicking on button (that invokes navigation) + avoid disabling this button clicking.

I saw at Xamarin Forms forum, that it's common case, and multiple people has already workarounded this.

I used such fragment of code, to avoid pushing Page with duplicates:

private async Task PushAsyncWithoutDuplicate(Page page)
{
	if (MainPage.Navigation?.NavigationStack != null)
	{
		// Prevent multiple puting same page at *NavigationStack*
		if (MainPage.Navigation.NavigationStack[MainPage.Navigation.NavigationStack.Count - 1].GetType() != page.GetType())
		{
			// Push *page* to *NavigationStack*
			await MainPage.Navigation.PushAsync(page);
		}
	}
}

What do you thing, about adding additional parameter to INavigationService methods - just simple bool allowDuplicate = true, which behind will prevent pushing same page at NavigationStack, as in above example?

[Update] Logging with Loggly

Sample

53-Logging-Loggly

Reason for Update

Project is currently stubbed out and needs a sample showing how to log with the Prism Logging Plugin and the Loggly Logging-as-a-Service platform

Please Update The solution

After Updating the prism version, i am getting the errors at many places,
can you please update the solution with the updated version of prism

[Enhancement] Combine Command Examples

API

  • Commanding
    • Delegate Command
    • Composite Command

Description

The Samples for Commanding should be combined and the sample expanded on. Currently the DelegateCommand sample only shows the use of the ObservesCanExecute, and the CompositeCommand sample is an entirely separate project. The sample should provide a basic menu with a different View / ViewModel for each aspect of DelegateCommand that we want to show.

[Update] 04 Commands

Sample

  • 04-Commands
  • 04-CompositeCommands

Reason for Update

We actually want to get rid of the 2 projects and combine these to show how to use different aspects of the commands in a single sample

Proposed Changes
  • Use a Menu Page in a NavigationPage
    • Option to Show the use of the CompositeCommand
    • Option to Show the current ObservesCanExecute
    • New pages to show different configuration aspects of DelegateCommand like ObservesProperty
  • Delete 04-CompositeCommands

[Update] 18 DeviceService

Sample

18-DeviceService

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Use the IDeviceService to show the current Runtime and Idiom

[Update] 16 PageLifecycleAware

Sample

16-PageLifecycleAware

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Implement IPageLifecycleAware on the ViewModel.
  • Navigate between two views
  • Use Debugger.Break to focus the developer on OnAppearing / OnDisappearing being called

[Update] 15 PageBehaviorFactory

Sample

15-PageBehaviorFactory

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Use a custom PageBehaviorFactory
  • Set some Platform Specifics / maybe change some colors.

[Update] Popups Plugin Sample

Sample

Popups Plugin Sample

Reason for Update

Currently Stubbed. Needs samples for using Popup Pages with the Prism Navigation Service, and the Dialog Service from the Popup Plugin.

Prism_forms on iOS with "link all" didn't work

Hello,

I use prism_forms with xamarin and if I activate the "link all" option on projectproperties - iOS build I get the error

Objective-C exception thrown. Name: NSInternalInconsistencyException Reason: Application windows are expected to have a root view controller at the end of application launch

To get it work to this point I must exclude some dlls from linking:

--linkskip=Microsoft.Practices.ServiceLocation --linkskip=Microsoft.Practices.Unity --linkskip=Prism --linkskip=Prism.Forms --linkskip=Prism.Unity.Forms

Can you help me?

Sincerly
Peter

[Request] RegisterForNavigation Sample

Sample

Add a sample to show various ways to Register Views for Navigation.

  • Basic Register View
  • Register View + ViewModel
  • Register View with Custom Name
  • Register View with Platform Specific Overrides
  • Register View with Idiom Specific Overrides

Reason for Update

We want to show users how to Register Views for Navigation depending on their workflow.

Samples for stable release 7.2

Would be great to see the samples for new concepts introduced in 7,2 like Auto View registration, View/ViewModel Initialization, Auto Initialize from navigation parameters, Dialog services etc.

App Links - Deep Navigation

Sample

Every so often you have a requirement where you want to handle a URL within your App. Prism is uniquely positioned here with URL based navigation.

We should have a sample that shows how to take a URL like prismlibrary.com and updates the platform so that when you try to open prismlibrary.com in the browser it will instead redirect you to the Sample where it will show the appropriate resource.

Thinking this should essentially have two special pages.. one that opens when you try to hit the root website.. and another when you try to hit the docs

  • prismlibrary.com
  • prismlibrary.com/docs/*

The Docs page should get a resource path that maps to the Documentation repo md file and parse the MD. This can be pretty simply by adapting this MarkdownView

[Update] Logging with Syslog

Sample

52-Logging-Syslog

Reason for Update

Project is currently stubbed out and needs a sample showing how to use the Prism Logging Plugin implementation for Syslog

Is it use InvokeCommandAction in Xamarin.Forms?

In WPF. If I want to call the ListView selecteIitemchanged can use

<i:Interaction.Triggers> <i:EventTrigger EventName="SelectedItemChanged"> <i:InvokeCommandAction Command="{Binding SelectedChangedCommand}"/> </i:EventTrigger> </i:Interaction.Triggers>

to call the command. But in Xamarin.Forms .Is it same ?

Prism Xamarin.Forms MasterDetail single instance of detail pages

Trying to create a Xamarin.Forms project with Prism and use a MasterDetail page. I have my MasterDetail set up following the HelloWorld example found in "Sandbox".
The issue is that every time you navigate to a detail page, a new viewmodel and view instance is created. Per Xamarin.Forms docs, you could hold onto a single instance of a view/viewmodel by maintaining a list of these views in your top level masterdetail view code behind (or view model). Then when a user clicks on a Master option, the stored view/viewmodel instance is navigated to - no recreating of views and their viewmodels. But this strategy seems to break with Prism, because navigation is done by string / uri, so we can't navigate to a page that we maintain in a list. Or can we? Wondering if I'm missing something

[Update] 14 EventToCommandBehavior

Sample

14-EventToCommandBehavior

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Show this returning a value from the EventArgs via the EventArgsPath property
  • Show this returning a value from the EventArgs via a custom IValueConverter
  • Show this with no value (using DelegateCommand)

Unitty resolve UnityPageNavigationService error

I am a newer in xamarin and prism, when i try to create a cross platform project with xamarin and prism.I encounter a problem.this is my app entrance. the version of prism.form is 6.1-pre5, the version of prism.unity is 6.2-pre3,
public class App : PrismApplication {
public App()
{
// The root page of your application
}

protected override void OnStart()
{
    // Handle when your app starts
}

protected override void OnSleep()
{
    // Handle when your app sleeps
}

protected override void OnResume()
{
    // Handle when your app resumes
}

protected override void InitializeModules()
{
}

protected override void OnInitialized()
{
    NavigationService.NavigateAsync<MainPage>();
}

protected override void RegisterTypes()
{
    Container.RegisterTypeForNavigation<MainPage>();
}

}

}
built successful. but when I run the App,I get a exception:Microsoft.Practices.Unity.ResolutionFailedException: Resolution of the dependency failed, type = "Prism.Unity.Navigation.UnityPageNavigationService", name = "(none)".

Exception occurred while: Calling constructor Prism.Unity.Navigation.UnityPageNavigationService(Microsoft.Practices.Unity.IUnityContainer container).

Exception is: MissingMethodException - Method 'PageNavigationService..ctor' not found.

At the time of the exception, the container was:

Resolving Prism.Unity.Navigation.UnityPageNavigationService,(none)

Calling constructor Prism.Unity.Navigation.UnityPageNavigationService(Microsoft.Practices.Unity.IUnityContainer container) .

Is there anything wrong?

Autowiring viewmodels fails to resolve dependencies on views (Prism.Unity.Forms)

While for pages autowiring with Prism.Unity.Forms works flawlessly, it does not seem to work for views. Lets assume a viewmodel with an arbitrary dependency

class MyViewViewModel
{
    public MyViewModel(IDependency dependency)
    {
    }
}

and the corresponding view

<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
   x:Class="My.App.Views.MyView"
             xmlns:mvvm="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
             mvvm:ViewModelLocator.AutowireViewModel="True">
...
</ContentView>

When prism/unity tries to resolve the dependency the following exception is thrown

Resolution of the dependency failed, type = "My.App.MyViewViewModel", name = "(none)".
Exception occurred while: Resolving parameter "dependency" of constructor My.App.MyViewViewModel(IDependency).
Exception is: NullReferenceException - Object reference not set to an instance of an object.

with the stack trace

at Microsoft.Practices.Unity.UnityContainer.DoBuildUp (System.Type t, System.Object existing, System.String name, System.Collections.Generic.IEnumerable1[T] resolverOverrides) [0x0007b] in <ba86a34b2f2c4964b8c588538e94514f>:0 at Microsoft.Practices.Unity.UnityContainer.DoBuildUp (System.Type t, System.String name, System.Collections.Generic.IEnumerable1[T] resolverOverrides) [0x00000] in :0
at Microsoft.Practices.Unity.UnityContainer.Resolve (System.Type t, System.String name, Microsoft.Practices.Unity.ResolverOverride[] resolverOverrides) [0x00000] in :0
at Microsoft.Practices.Unity.UnityContainerExtensions.Resolve (Microsoft.Practices.Unity.IUnityContainer container, System.Type t, Microsoft.Practices.Unity.ResolverOverride[] overrides) [0x0000b] in :0
at Prism.Unity.PrismApplication.b__2_0 (System.Object view, System.Type type) [0x0002a] in :0
at Prism.Mvvm.ViewModelLocationProvider.AutoWireViewModelChanged (System.Object view, System.Action`2[T1,T2] setDataContextCallback) [0x00042] in :0
at Prism.Mvvm.ViewModelLocator.OnAutowireViewModelChanged (Xamarin.Forms.BindableObject bindable, System.Object oldValue, System.Object newValue) [0x00019] in <7a32c28f35024e719a93e31b4d1e3d2a>:0
at Xamarin.Forms.BindableObject.SetValueActual (Xamarin.Forms.BindableProperty property, Xamarin.Forms.BindableObject+BindablePropertyContext context, System.Object value, System.Boolean currentlyApplying, Xamarin.Forms.BindableObject+SetValueFlags attributes, System.Boolean silent) [0x00108] in C:\BuildAgent3\work\ca3766cfc22354a1\Xamarin.Forms.Core\BindableObject.cs:592
at Xamarin.Forms.BindableObject.SetValueCore (Xamarin.Forms.BindableProperty property, System.Object value, Xamarin.Forms.BindableObject+SetValueFlags attributes, Xamarin.Forms.BindableObject+SetValuePrivateFlags privateAttributes) [0x0015b] in C:\BuildAgent3\work\ca3766cfc22354a1\Xamarin.Forms.Core\BindableObject.cs:386
at Xamarin.Forms.BindableObject.SetValue (Xamarin.Forms.BindableProperty property, System.Object value, System.Boolean fromStyle, System.Boolean checkAccess) [0x0005f] in C:\BuildAgent3\work\ca3766cfc22354a1\Xamarin.Forms.Core\BindableObject.cs:539
at Xamarin.Forms.BindableObject.SetValue (Xamarin.Forms.BindableProperty property, System.Object value) [0x00000] in C:\BuildAgent3\work\ca3766cfc22354a1\Xamarin.Forms.Core\BindableObject.cs:83

Registering MyViewViewModel with the unity container does not resolve the issue, neither.

[Update] 20 ConfirmNavigation

Sample

20-ConfirmNavigation

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Create a basic UI with a Switch bound to a bool in the ViewModel
  • Try to Navigate away to another Page return the value of the bool
  • This should probably be wrapped in a Tabbed Page so we can demo both IConfirmNavigation and IConfirmNavigationAsync in different tabs.

OnNavigatedTo fires twice on MasterDetailPage

Hi, I've copied the HamburgerMenu code sample in a new Xamarin Forms with Prism template solution.

In LoginPage i have a button with the following command code:

await _navigationService.NavigateAsync ("/ MainPage / NavigationPage / ViewA");

MainPage is my MasterDetailPage. In MainPageViewModel the OnNavigatedTo override method fires twice.

Any idea? Iยดm missing somethig?

My code: https://github.com/HeikkiDev/XamarinFormsPrismHamburger

Thanks in advance.

[Update] Logging with App Center

Sample

51-Logging-AppCenter

Reason for Update

Project is currently stubbed out. Will need a demo with the Prism Logging Plugin implementation for App Center

[Update] 02-ServiceRegistration

Sample

02-ServiceRegistration

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Show how to register a Transient Service
  • Show how to register a Singleton Service
  • Have a simple UI that can visualize how the Singleton is always the same and the Transient is getting a new instance each time.

50 - UWP Rg.Plugins.Popup initialization missing

According to documentation Rg.Plugins.Popup initialization is required in App.xaml.cs.

Rg.Plugins.Popup.Popup.Init(); Xamarin.Forms.Forms.Init(e, Rg.Plugins.Popup.Popup.GetExtraAssemblies());

in place of

Xamarin.Forms.Forms.Init(e);

Thanks for your good job
Walter

[Update] 11 Module Dependency

Sample

11-ModuleDependency

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Show how to specify dependencies when adding the Module to the ModuleCatalog
  • Show how to specify dependencies using the ModuleDependencyAttribute
  • Show which modules are loaded and which aren't

HamburgerMenu project fails to build iOS

The XamlC task fails, in particular:

    /Users/{snip}/Xamarin.Forms.targets(62,3): error MSB4018: System.IO.FileNotFoundException: Could not find file "/Users/{snip}/prism/Prism-Samples-Forms/HamburgerMenu/HamburgerMenu/obj/Debug/HamburgerMenu.dll.mdb"

Looks like it's just the ancient version of Xamarin Forms it references isn't compatible with the current Xamarin toolchain.

[Update] 07 DialogService

Sample

07-DialogService

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Add a basic dialog that shows passing of dialog parameters via QueryString and DialogParameters
  • Add basic Dialog that has a form that controls the return value of CanCloseDialog

[Update] 13 ViewModel Initialization

Sample

13-ViewModelInitialization

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Show the use of IAutoInitialize
  • Show the use of IInitialize
    • Have a ViewModel that uses public void Initialize
    • Have a ViewModel that uses public async void Initialize
  • Show the use of IInitializeAsync
    • Be sure the UI shows a busy indicator
    • Have InitializeAsync await a Task.Delay(10 * 1000) so we get a good UI delay.

Update UsingEventAggregator Sample

Description

I am updating the sample for UsingEventAggregator to 7.1. Will submit a PR this week.

Changes

  • Payload-less events.
public class FormSubmittedEvent : PubSubEvent { }

[Update] 17 XAMLNavigation

Sample

17-XAML Navigation

Reason for Update

This sample is currently stubbed and needs actual implementation.

TODO

  • Show the use of NavigateTo
    • i.e. {prism:NavigateTo ViewA}
    • i.e. {prism:NavigateTo 'ViewA?message=Hello%20from%20XAML!'}
  • Show the use of GoBack
  • Show the use of Parameters
    • i.e. CommandParameter="{Binding SomeProperty"}
    • i.e. CommandParameter="{prism:Property Key=message, Value='Hello from XAML Extension'}"
    • etc.

Unit testing example please

We couldnโ€™t find any code matching 'tests'

I couldn't find any documentation how to unit test my Xamarin.Forms App using NUnit with Prism.Unity.Forms. Maybe at least a links in the Readme?

[Visual Studio for Mac] container based example fails to build for iOS

1). Out of box it shows the error MSB4018: The "XamlCTask" task failed unexpectedly. error

Building: UsingDependencyService.iOS (Debug|iPhoneSimulator)
Build started 1/3/2018 7:11:45 PM.
__________________________________________________
Project "/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/UsingDependencyService/UsingDependencyService/UsingDependencyService.csproj" (Build target(s)):

Target ResolveAssemblyReferences:
    A TargetFramework profile exclusion list will be generated.
Target GenerateTargetFrameworkMonikerAttribute:
  Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
Target _CoreXamlG:
    Source: App.xaml
    Language: C#
    AssemblyName: UsingDependencyService
    OutputFile obj/Debug/UsingDependencyService.App.xaml.g.cs
Target _CoreXamlG:
    Source: Views/MainPage.xaml
    Language: C#
    AssemblyName: UsingDependencyService
    OutputFile obj/Debug/UsingDependencyService.Views.MainPage.xaml.g.cs
Target CoreCompile:
    /Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/4.5/csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /errorendlocation /preferreduilang:en-US /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Unity.4.0.1/lib/portable-net45+wp80+win8+wpa81+MonoAndroid10+MonoTouch10/Microsoft.Practices.Unity.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/mscorlib.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/mscorlib.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Prism.Core.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Prism.Forms.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.Forms.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Prism.Unity.Forms.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.Unity.Forms.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/Microsoft.CSharp.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Collections.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ComponentModel.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ComponentModel.EventBasedAsync.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Core.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Contracts.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Debug.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Tools.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Dynamic.Runtime.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Globalization.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.IO.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.Expressions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.Queryable.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.NetworkInformation.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.Requests.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ObjectModel.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.Extensions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Resources.ResourceManager.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Extensions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.InteropServices.WindowsRuntime.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Json.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Xml.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Security.Principal.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Http.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Security.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Web.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.Encoding.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.Encoding.Extensions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.RegularExpressions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Threading.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Threading.Tasks.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Windows.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.Linq.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.ReaderWriter.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.Serialization.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.XDocument.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.XmlSerializer.dll /debug+ /debug:portable /filealign:512 /optimize- /out:obj/Debug/UsingDependencyService.dll /resource:App.xaml,UsingDependencyService.App.xaml /resource:Views/MainPage.xaml,UsingDependencyService.Views.MainPage.xaml /target:library /utf8output App.xaml.cs Properties/AssemblyInfo.cs Services/ITextToSpeech.cs ViewModels/MainPageViewModel.cs Views/MainPage.xaml.cs "/var/folders/5k/mvb95qrx6mvdjyx66kxvlqpr0000gp/T/.NETPortable,Version=v4.5,Profile=Profile78.AssemblyAttributes.cs" obj/Debug/UsingDependencyService.App.xaml.g.cs obj/Debug/UsingDependencyService.Views.MainPage.xaml.g.cs
Target XamlC:
    Compiling Xaml
    
    Assembly: obj/Debug/UsingDependencyService.dll
    ReferencePath: 	/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Unity.4.0.1/lib/portable-net45+wp80+win8+wpa81+MonoAndroid10+MonoTouch10/Microsoft.Practices.Unity.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/mscorlib.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Prism.Core.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Prism.Forms.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.Forms.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Prism.Unity.Forms.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.Unity.Forms.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll;/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/Microsoft.CSharp.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/mscorlib.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Collections.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ComponentModel.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ComponentModel.EventBasedAsync.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Core.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Contracts.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Debug.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Tools.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Dynamic.Runtime.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Globalization.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.IO.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.Expressions.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.Queryable.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.NetworkInformation.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.Primitives.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.Requests.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ObjectModel.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.Extensions.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.Primitives.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Resources.ResourceManager.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Extensions.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.InteropServices.WindowsRuntime.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Json.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Primitives.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Xml.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Security.Principal.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Http.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Primitives.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Security.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Web.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.Encoding.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.Encoding.Extensions.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.RegularExpressions.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Threading.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Threading.Tasks.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Windows.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.Linq.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.ReaderWriter.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.Serialization.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.XDocument.dll;/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.XmlSerializer.dll
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: The "XamlCTask" task failed unexpectedly.
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: System.IO.FileNotFoundException: Could not find file "/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/UsingDependencyService/UsingDependencyService/obj/Debug/UsingDependencyService.dll.mdb"
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: File name: '/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/UsingDependencyService/UsingDependencyService/obj/Debug/UsingDependencyService.dll.mdb'
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: Server stack trace: 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at (wrapper remoting-invoke-with-check) System.IO.FileStream:.ctor (string,System.IO.FileMode,System.IO.FileAccess)
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.CompilerServices.SymbolWriter.MonoSymbolFile.ReadSymbolFile (System.String mdbFilename) [0x00000] in <f812160bc1d54955ae9692ed601b6f12>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.CompilerServices.SymbolWriter.MonoSymbolFile.ReadSymbolFile (System.String mdbFilename, System.Guid assemblyGuid) [0x00000] in <f812160bc1d54955ae9692ed601b6f12>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.Mdb.MdbReaderProvider.GetSymbolReader (Mono.Cecil.ModuleDefinition module, System.String fileName) [0x00012] in <f812160bc1d54955ae9692ed601b6f12>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleReader.ReadSymbols (Mono.Cecil.ModuleDefinition module, Mono.Cecil.ReaderParameters parameters) [0x00032] in <d4dd94f3e5f74095b62543e88f18941d>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleReader.CreateModuleFrom (Mono.Cecil.PE.Image image, Mono.Cecil.ReaderParameters parameters) [0x00042] in <d4dd94f3e5f74095b62543e88f18941d>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleDefinition.ReadModule (System.IO.Stream stream, Mono.Cecil.ReaderParameters parameters) [0x00028] in <d4dd94f3e5f74095b62543e88f18941d>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleDefinition.ReadModule (System.String fileName, Mono.Cecil.ReaderParameters parameters) [0x0000a] in <d4dd94f3e5f74095b62543e88f18941d>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.AssemblyDefinition.ReadAssembly (System.String fileName, Mono.Cecil.ReaderParameters parameters) [0x00000] in <d4dd94f3e5f74095b62543e88f18941d>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Xamarin.Forms.Build.Tasks.XamlCTask.Compile (System.Collections.Generic.IList`1[T] thrownExceptions) [0x001ca] in <8cb029844f1042e6a4a06f623985b8f8>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Xamarin.Forms.Build.Tasks.XamlCTask.Execute () [0x00007] in <8cb029844f1042e6a4a06f623985b8f8>:0 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at (wrapper xdomain-dispatch) Xamarin.Forms.Build.Tasks.XamlCTask:Execute (object,byte[]&,byte[]&)
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: Exception rethrown at [0]: 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at (wrapper xdomain-invoke) Xamarin.Forms.Build.Tasks.XamlCTask:Execute ()
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute () [0x00023] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/msbuild-15.4/src/Build/BackEnd/TaskExecutionHost/TaskExecutionHost.cs:631 
    /Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Microsoft.Build.BackEnd.TaskBuilder+<ExecuteInstantiatedTask>d__26.MoveNext () [0x0022d] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/msbuild-15.4/src/Build/BackEnd/Components/RequestBuilder/TaskBuilder.cs:787 
Done building target "XamlC" in project "UsingDependencyService.csproj" -- FAILED.

Done building project "UsingDependencyService.csproj" -- FAILED.

Build FAILED.

/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: The "XamlCTask" task failed unexpectedly.
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: System.IO.FileNotFoundException: Could not find file "/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/UsingDependencyService/UsingDependencyService/obj/Debug/UsingDependencyService.dll.mdb"
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: File name: '/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/UsingDependencyService/UsingDependencyService/obj/Debug/UsingDependencyService.dll.mdb'
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: Server stack trace: 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at (wrapper remoting-invoke-with-check) System.IO.FileStream:.ctor (string,System.IO.FileMode,System.IO.FileAccess)
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.CompilerServices.SymbolWriter.MonoSymbolFile.ReadSymbolFile (System.String mdbFilename) [0x00000] in <f812160bc1d54955ae9692ed601b6f12>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.CompilerServices.SymbolWriter.MonoSymbolFile.ReadSymbolFile (System.String mdbFilename, System.Guid assemblyGuid) [0x00000] in <f812160bc1d54955ae9692ed601b6f12>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.Mdb.MdbReaderProvider.GetSymbolReader (Mono.Cecil.ModuleDefinition module, System.String fileName) [0x00012] in <f812160bc1d54955ae9692ed601b6f12>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleReader.ReadSymbols (Mono.Cecil.ModuleDefinition module, Mono.Cecil.ReaderParameters parameters) [0x00032] in <d4dd94f3e5f74095b62543e88f18941d>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleReader.CreateModuleFrom (Mono.Cecil.PE.Image image, Mono.Cecil.ReaderParameters parameters) [0x00042] in <d4dd94f3e5f74095b62543e88f18941d>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleDefinition.ReadModule (System.IO.Stream stream, Mono.Cecil.ReaderParameters parameters) [0x00028] in <d4dd94f3e5f74095b62543e88f18941d>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.ModuleDefinition.ReadModule (System.String fileName, Mono.Cecil.ReaderParameters parameters) [0x0000a] in <d4dd94f3e5f74095b62543e88f18941d>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Mono.Cecil.AssemblyDefinition.ReadAssembly (System.String fileName, Mono.Cecil.ReaderParameters parameters) [0x00000] in <d4dd94f3e5f74095b62543e88f18941d>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Xamarin.Forms.Build.Tasks.XamlCTask.Compile (System.Collections.Generic.IList`1[T] thrownExceptions) [0x001ca] in <8cb029844f1042e6a4a06f623985b8f8>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Xamarin.Forms.Build.Tasks.XamlCTask.Execute () [0x00007] in <8cb029844f1042e6a4a06f623985b8f8>:0 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at (wrapper xdomain-dispatch) Xamarin.Forms.Build.Tasks.XamlCTask:Execute (object,byte[]&,byte[]&)
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018: Exception rethrown at [0]: 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at (wrapper xdomain-invoke) Xamarin.Forms.Build.Tasks.XamlCTask:Execute ()
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute () [0x00023] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/msbuild-15.4/src/Build/BackEnd/TaskExecutionHost/TaskExecutionHost.cs:631 
/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms-2/UsingDependencyService/packages/Xamarin.Forms.2.3.3.193/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets(62,3): error MSB4018:   at Microsoft.Build.BackEnd.TaskBuilder+<ExecuteInstantiatedTask>d__26.MoveNext () [0x0022d] in /Users/builder/data/lanes/4992/mono-mac-sdk/external/bockbuild/builds/msbuild-15.4/src/Build/BackEnd/Components/RequestBuilder/TaskBuilder.cs:787 
    0 Warning(s)
    1 Error(s)

Time Elapsed 00:00:01.41

---------------------- Done ----------------------

Build: 1 error, 0 warnings

2). When upgraded all nuget packages, it shows the The type 'IUnityContainer' is defined in an assembly that is not referenced issue.

Building: UsingDependencyService.iOS (Debug|iPhoneSimulator)
Build started 1/3/2018 7:06:40 PM.
__________________________________________________
Project "/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/UsingDependencyService/UsingDependencyService/UsingDependencyService.csproj" (Build target(s)):

Target ResolveAssemblyReferences:
    A TargetFramework profile exclusion list will be generated.
Target GenerateTargetFrameworkMonikerAttribute:
  Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
Target _CoreXamlG:
  Skipping target "_CoreXamlG" because all output files are up-to-date with respect to the input files.
Target _CoreXamlG:
  Skipping target "_CoreXamlG" because all output files are up-to-date with respect to the input files.
Target CoreCompile:
    /Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/4.5/csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /errorendlocation /preferreduilang:en-US /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/mscorlib.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/mscorlib.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Prism.Core.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Prism.Forms.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.Forms.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Prism.Unity.Forms.6.3.0/lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Prism.Unity.Forms.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Unity.5.5.3/lib/netstandard1.0/Unity.Abstractions.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Unity.5.5.3/lib/netstandard1.0/Unity.Container.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Xamarin.Forms.2.5.0.122203/lib/portable-win+net45+wp80+win81+wpa81/Xamarin.Forms.Core.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Xamarin.Forms.2.5.0.122203/lib/portable-win+net45+wp80+win81+wpa81/Xamarin.Forms.Platform.dll /reference:/Users/adodatko/projects/research/xamarin/prism-mvvm/Prism-Samples-Forms/UsingDependencyService/packages/Xamarin.Forms.2.5.0.122203/lib/portable-win+net45+wp80+win81+wpa81/Xamarin.Forms.Xaml.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/Microsoft.CSharp.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Collections.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ComponentModel.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ComponentModel.EventBasedAsync.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Core.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Contracts.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Debug.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Diagnostics.Tools.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Dynamic.Runtime.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Globalization.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.IO.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.Expressions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Linq.Queryable.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.NetworkInformation.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Net.Requests.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ObjectModel.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.Extensions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Reflection.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Resources.ResourceManager.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Extensions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.InteropServices.WindowsRuntime.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Json.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Runtime.Serialization.Xml.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Security.Principal.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Http.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Primitives.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Security.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.ServiceModel.Web.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.Encoding.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.Encoding.Extensions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Text.RegularExpressions.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Threading.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Threading.Tasks.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Windows.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.Linq.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.ReaderWriter.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.Serialization.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.XDocument.dll /reference:/Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/xbuild-frameworks/.NETPortable/v4.5/Profile/Profile78/System.Xml.XmlSerializer.dll /debug+ /debug:portable /filealign:512 /optimize- /out:obj/Debug/UsingDependencyService.dll /resource:App.xaml,UsingDependencyService.App.xaml /resource:Views/MainPage.xaml,UsingDependencyService.Views.MainPage.xaml /target:library /utf8output App.xaml.cs Properties/AssemblyInfo.cs Services/ITextToSpeech.cs ViewModels/MainPageViewModel.cs Views/MainPage.xaml.cs "/var/folders/5k/mvb95qrx6mvdjyx66kxvlqpr0000gp/T/.NETPortable,Version=v4.5,Profile=Profile78.AssemblyAttributes.cs" obj/Debug/UsingDependencyService.App.xaml.g.cs obj/Debug/UsingDependencyService.Views.MainPage.xaml.g.cs
    App.xaml.cs(6,32,6,48): error CS0012: The type 'IUnityContainer' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Practices.Unity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f'.
Done building target "CoreCompile" in project "UsingDependencyService.csproj" -- FAILED.

Done building project "UsingDependencyService.csproj" -- FAILED.

Build FAILED.

App.xaml.cs(6,32,6,48): error CS0012: The type 'IUnityContainer' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Practices.Unity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f'.
    0 Warning(s)
    1 Error(s)

Time Elapsed 00:00:01.31

---------------------- Done ----------------------

Build: 1 error, 0 warnings

UsingModules not working - incomplete ?

I expected that SampleModule will load a new page, but nothing happens when I press the button.
SampleModule is only the device independent PCL.
Isn't it necessary to implement device specific SampleModule.Droid, SampleModule.iOS ... ?

UWP projects not building

Description

In the process of updating the sample projects it seems that the UWP projects are all having certificate issues with missing certificates. We need someone who would like to go through the projects and get the UWP samples building as each sample project is updated to Prism 7.2

[Update] ShinyLib + Prism

Sample

60-ShinyLib

Reason for Update

Sample is currently stubbed out and needs to be implemented to show how to use Shiny Lib and Prism with the Prism Container Extensions

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.