I have a Portable Class Library (PCL) that needs conversion to a normal class library (targeted only at .NET 4.5).
I've tried editing the .csproj
file, with no success. I'm wondering how to do this?
I have a Portable Class Library (PCL) that needs conversion to a normal class library (targeted only at .NET 4.5).
I've tried editing the .csproj
file, with no success. I'm wondering how to do this?
Got it! I reversed the instructions here:
Delete this from the .csproj
file:
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
And change this ...
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
... to this:
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />