I try to install a MimeTypes NuGet package in my LINQPad query. I see the following warning and I can't use in my LINQPad.
There are no assemblies in this package, only .cs.pp files that require merging via MSBuild. LINQPad doesn't use MSBuild, so this package won't work.
.cs.pp
LINQPad will still import the content files, but do nothing with them. So you can run the following:
File.ReadAllText ("MimeTypes.Nullable.cs.pp").Dump();
and then paste the code into your query after manually performing any MSBuild variables.
I keep some notes here.
Comments
There are no assemblies in this package, only
.cs.pp
files that require merging via MSBuild. LINQPad doesn't use MSBuild, so this package won't work.LINQPad will still import the content files, but do nothing with them. So you can run the following:
and then paste the code into your query after manually performing any MSBuild variables.
I keep some notes here.