Thursday, 15 May 2014

Can I use .net core on visual studio 2013 -


, or will it be available for use on Core Core Visual Studio 2013? Or will it be available on Visual Studio 2015?

Thanks

Yes, this creates a portable class library by creating .NET Core 5 contracts It is possible to build against, which targets the .NET Framework 4.5 and Windows 8. You will need to manually edit the .csproj file and add the following.

  & lt; Asset group & gt; & Lt; ImplicitlyExpandTargetFramework & gt; False & lt; / ImplicitlyExpandTargetFramework & gt; & Lt; / PropertyGroup & gt;  

Then install the NuGet package and other .NET Core 5 packages.

As a result the assembly will be able to execute on any .NET Core 5-based framework. Net Framework 4.6, ASP.NET 5 & amp; .NET Native resident

Note, this is the same technique used to create .NET Core Assemblies in the repository.


No comments:

Post a Comment