I have been having issues with boilerplate i am just starting out with the use of it but every time i download the template it gives me this error not sure why it does this.
any help would be appreciated
I have been having issues with boilerplate i am just starting out with the use of it but every time i download the template it gives me this error not sure why it does this.
any help would be appreciated
This bug has been fixed in .NET Core 2.1: https://github.com/dotnet/corefx/issues/23229
Delete the bin
folder in the Web project and rebuild the solution.
Add the following to your project file:
<Target Name="RemoveNetFxForceConflicts" AfterTargets="ResolveAssemblyReferences">
<ItemGroup>
<ReferencePath Remove="@(ReferencePath)" Condition="'%(FileName)' == 'netfx.force.conflicts'" />
</ItemGroup>
</Target>
As @aaron stated, the solution is deleting bin folder.
In details;
PS: This issue is not directly related to aspnetboilerplate. It's about corefx...
Further information: https://github.com/dotnet/corefx/issues/23229