Question

I have 4.5 library I wish to use with a monomac project but under 'edit references' I am getting "incompatible target framework: .NETFramework=v4.5". Is it possible to make a .net 4.5 monomac project so I can reference this library?

Was it helpful?

Solution

Solved the problem by adding the following to the first PropertyGroup in the .csproj file.

   <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>

This then allowed me to reference my other .netv4.5 projects

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top