When I build my .NET Core (NETStandard v2.0) project I am getting the following warning:
ViewModels: [FodyPackageReference] Fody: The package reference for PropertyChanged.Fody
does not contain PrivateAssets='All'
The warning is in reference to…
Visual Studio 2017 let me know there was an upgrade to Fody version 5 this morning. I accepted and did a NuGet package update of both Fody and PropertyChanged.Fody.
Now, my project/solution will no longer build.
The error is:
"Fody is only…
** This is an issue in Visual Studio 2013.
The error I'm getting is massive and mostly useless, but the crux of it is
Error 130 Fody: Could not load 'ModuleWeaver' from 'PropertyChanged.Fody, Version=1.50.3.0, Culture=neutral, PublicKeyToken=null'…
I'm having a problems building a PCL in Xamarin Studio on the Mac. It works fine in debug mode but fody throws an exception in Release Mode.
Exception during build is listed below.
Error: Fody: An unhandled exception occurred:
Exception:
Symbol…
I intended to use Fody.PropertyChanged in one of my projects, and it was properly added via NuGet:
Install-Package PropertyChanged.Fody
I realized, it was in the wrong project, so I used the uninstall command:
Uninstall-Package…
I am using the free edition of PostSharp extensively in a project. I would like to use the PropertyChanged.Fody addin to handle all the PropertyChanged Notifications automatically.
(I know that PostSharp offers a library for this, but it is not…
In my solution many project make use of Fody to inject the PropertyChanged weaver. Unfortunately at the end of the build, when Fody starts writing the final assembly, the process hangs and cannot be recovered.
This is the MSBuild command I am…
I'm working on a WPF project. To prevent a lot of boiler code I'm using Fody PropertyChanged. This is a snippet of my problem:
[ImplementPropertyChanged]
public class MyViewModel : MyViewModelBase
{
public bool HasCardSet
{
get
…
I've installed Nuget for Xamarin Studio and tried to add Fody/PropertyChanged to my iOS solution. However I get the following error:
Adding 'PropertyChanged.Fody 1.41.0.0' to ImapClientApp.iOS.
Could not install package 'PropertyChanged.Fody…
I've got a WPF application using Caliburn.Micro. I want to be able to overlay the application with a shadow and progress ring (from MahApps.Metro) when I want the application to wait for some work to be done in the background.
What I have at the…
I was using the Fody and Fody.PropertyChanged NuGet packages successfully in my solution until I was installing another package and saw there we're updates available to those previously mentioned packages. After updating, the following errors are…
I understand that using AOP tooling could/should interfere with edit and continue for a class that is weaved. But I have a case where simply using MVVMLight and Fody.PropertyChanged in the same project prevents edit and continue anywhere if there…
I'm building a Xamarin.Forms app into Xamarin.Android using Visual Studio App Center. The app builds fine in develop and release configurations on my machine, but when I try to build on Mobile Center, the build almost completes (i.e. the MSBuild…