Open
Description
I've got an sdk project for building a nuget package which includes this section:
<ItemGroup>
<Content Include="wwwroot\*.d.ts" PackagePath="contentfiles\any\any\typings\" />
</ItemGroup>
The goal is to provide typescript definition files to consumers of the package. I don't want them to be compiled as C# files, and the item isn't of type Compile.
The generated package contains the content files at the specified path. However, when my package is referenced by some project, it tries to compile the files with csc.