Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make a .NET Core class library and reference it from a .NET 4.6 project?

Tags:

I want to:

  • Make a class library that defines some interfaces and simple generic helper classes. It'll rely on generic collections and IQueryable<T> but no third party dependencies (well, JetBrains.Annotations).
  • Be able to reference that class library from everywhere (specifically UWP, net46 and ASP.Net Core RC2)
  • Ideally, use the project.json system throughout, although I'm prepared to sacrifice that if need be.
  • Publish the finished library to a NuGet feed and from there use it in other apps

When creating my class library project in Visual Studio 2015.2, I found the Class Library (.NET Core) template, which states

A project template for creating a class library as a NuGet package that can target any platform

Any platform! Brilliant... But I can't get it to work. After a lot of fiddling, I currently have the following project.json (I've probably completely broken it by now):

{ "title": "My Really Useful Class Library", "copyright": "Copyright © 2015-16 Tigra Astronomy, all rights reserved", "description": "Really neat stuff", "language": "en-GB", "version": "1.0.0-*", "dependencies": {     "JetBrains.Annotations": "10.1.4",     }, "frameworks": {     "netstandard1.5": {         "imports": "dnxcore50",         "dependencies": {             "NETStandard.Library": "1.5.0-rc2-24027",             "System.Linq.Expressions": "4.0.11-rc2-24027"             }         }     "net46": {         "frameworkAssemblies": {             "System.Collections": "4.0.*"             },         "dependencies": {}         }     },     "buildOptions": {         "xmlDoc": true         } } 

The next thing I did was create my .NET Framework 4.6 project in the same solution, and try to reference the class library. It lets me add the reference but I'm getting build errors, unresolved symbols, R# is unhappy, etc.

I guess I'm not doing it right (no surprise, really, as I'm fumbling in the dark).

I've read some of the docs about TFMs, frameworks and libraries but none of it really makes much sense.

What do I really need to put in my class library's project.json, so that I can reference it from my .net framework 4.6 app, and also from UWP and ASP.NET Core RC2 apps? Is this really the right approach or have I started out on the wrong foot?

like image 341
Tim Long Avatar asked Jun 18 '16 23:06

Tim Long


People also ask

How do I create a class library in .NET Core?

Right-click on the solution in Solution Explorer and select Add > New Project. On the Add a new project page, enter library in the search box. Choose C# or Visual Basic from the Language list, and then choose All platforms from the Platform list. Choose the Class Library template, and then choose Next.

How do I add a reference to .NET Core library?

One method of adding references to your library is by typing it directly in the project. json file. As you can see that we have added some references under the dependencies section as shown in the following code. Let us now save this file and you will see that references are added to your library now.

How do I add a class library to an existing project?

Go to the solution explorer window of the project where you want to add the library project,right click on it and choose add reference ,then in the opened window choose browse and select the physical path of your library project check it and add it . Now you can use it .

Can I use NET Core library in net Framework project?

Net Standard provides a curated set of APIs. The upshot is that you can create libraries that can be directly referenced by . Net Framework, . Net Core and Xamarin applications.


2 Answers

Right now there are two ways of creating C# projects: xproj and csproj. Assuming we're using project.json for both of them, that still works differently for the project types -- for xproj, the project.json contains everything needed to build the project; for csproj, it only contains the nuget dependencies.

That said, some project types, like UWP, cannot be built with xproj due to needing a more complicated build pipeline than what xproj/project.json supports. (BTW, this was one key reason for moving back to msbuild.)

There are also two ways of creating a .NET Standard-based class library: you can use xproj with project.json, as you've done, or you can create a regular csproj "Portable Class Library" project. With VS 2015 Update 3 RC, you can change the PCL to target a .NET Standard version (netstandard1.x instead of a PCL profile, 259, etc).

If you use a csproj-based class library to target netstandard1.x, things should just work for you when adding project references. Note that UWP currently supports up to netstandard1.4 based on the platform map. The challenge is if you want to use an xproj/project.json-based project instead. One key reason for using xproj today is to enable cross-compiling between multiple target frameworks. That is to say, create more than one output from your project. That's different than creating a single output that can be referenced from any compatible project. Both have their uses, it depends on your needs.

If you decide to create an xproj-based class library, there's a workaround you can use to reference it from a UWP project or any other compatible project type if the "Add References" dialog doesn't work (which it doesn't as csproj->xproj is pretty much broken). Instead of using the dialog, edit your UWP csproj to point to the output of the xproj like this:

<Reference Include="System.Reactive.Interfaces">   <HintPath>..\System.Reactive.Interfaces\bin\$(Configuration)\netstandard1.0\System.Reactive.Interfaces.dll</HintPath> </Reference> 

The above snippet is taken from the Rx.NET UWP Test Runner here

If you do this, you'll also need to add build dependency from your UWP project to your xproj since MSBuild/Visual Studio won't know about it and build things in the wrong order. To do this, right click on your UWP project in the Solution Explorer, then select "Build Dependencies -> Project Dependencies". In that dialog, check the box for your xproj to ensure that VS/MSbuild knows to build that one first.

You can see the full Rx.NET solution here, which includes xproj->xproj references and the UWP -> xproj references I mention above.

like image 147
Claire Novotny Avatar answered Nov 08 '22 13:11

Claire Novotny


The new project templates/.xproj works a bit differently. The new Class Libraries (and application templates) produce nuget packages, rather than plain assemblies.

Within that nuget package all targets are packed into it. That being said, you add the new project same way as you add any other nuget package: You put the nuget into a nuget feed, reference this in Visual Studio and then fetch it from there.

If you don't have a nuget server running (Visual Studio Team Services + NuGet package, myget, self-hosted) you can also put the packages into a folder (local or network share) and add this folder as a nuget source.

If that's "too" much work, you can also create two projects into one folder: A *.csproj and a *.xproj. The *.csproj targets the .NET 4.6 Framework and the *.xproj stays as you pointed above and has multiple targets. With this setup, you can normally reference the project the way you used before (if they are in the same solution), by simply adding an reference.

like image 23
Tseng Avatar answered Nov 08 '22 12:11

Tseng