Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to create a nuget package with content which work with different kinds of projects.

TestSource.nuspec look like this:
<contentFiles> <files include="csanyTestSource.cs" buildAction="Compile" /> </contentFiles> </metadata> <files> <file src="TestFolderTestSource.cs" target="content/TestFolder" /> </files> (the file is available both as contentFilescsanyTestSource.cs and TestFolderTestSource.cs)

The created package works fine in a "normal" project but nothing happens in a packagereference project.

I assume I'm missing something simple

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
290 views
Welcome To Ask or Share your Answers For Others

1 Answer

Found this out myself.

You need to add the file twice in the files section

  <contentFiles>
    <files include="csanyTestSource.cs" buildAction="Compile" />
  </contentFiles>
</metadata>
<files> 
  <file src="TestFolderTestSource.cs" target="content/TestFolder" />
  <file src="TestFolderTestSource.cs" target="contentFiles/cs/any" />
</files>

The package will then work for both normal and packagereference projects.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...