Including a Folder in NuGet Package and have it install into project as file .netcore/Razor

让人想犯罪 __ 提交于 2021-02-04 08:30:27

问题


I am using Visual Studio 2019 and creating NuGet packages successfully with this method:

https://docs.microsoft.com/en-us/nuget/quickstart/create-and-publish-a-package-using-visual-studio?tabs=netcore-cli

All going well, but there are some settings (.json) files contained within a directory PageSettings/

When I publish my NuGet package and then install it into a new project, this directory appears in VS as a linked item (see pic). So as a user I can access the files, but they don't "exist" when the project is run.

This means if I run this project without physically copying and adding these files I get ArgumentException: The directory name 'Path-To-project\pagesettings' does not exist. (Parameter 'Path')

I can see why this is happening, but can't work out how to change it, or if it is possible.

The article linked above suggests adding code to the csproj file like:

<ItemGroup>
  <Content Include="readme.txt">
    <Pack>true</Pack>
    <PackagePath>\</PackagePath>
  </Content>
</ItemGroup>

But that doesn't work and in fact seems unnecessary since the Pack command is including my files, just not creating them properly when installing.

Also - it would be extremely handy if there was a way to tell VS to prompt whether to install this file or not. Since it is settings, if a user changes the settings and then later installs an updated version of my NuGet package I would not want it to overwrite their customised settings... perhaps this is why the link design happens... if so, if someone could confirm?


回答1:


Actually, you should create a .props file in your nuget package.

1) create a file called <package_id>.props file in your nuget project.

Like this:

Note: if your created nuget package called test.1.0.0.nupkg, the file should be named as test.props so that it will work.

2) add these in the test.props file:

<Project>
  <Target Name="CopyFiles" BeforeTargets="Build">
    <ItemGroup>     
      <File Include="$(MSBuildThisFileDirectory)..\Pagesettings\*.*"></File>          
    </ItemGroup>
      <Copy SourceFiles="@(File)" DestinationFolder="$(ProjectDir)Pagesettings"></Copy>
  </Target>
</Project>

3) add these in xxx.csproj file:

   <ItemGroup>
        <None Include="Pagesettings\*.*(the json files' path of your nuget project)" Pack="true" PackagePath="Pagesettings"> 
        </None>
        <None Include="build\*.*" Pack="true" PackagePath="build"></None>
    </ItemGroup>

then reapck your project.

4) then clean your nuget caches or delete all files under C:\Users\xxx(current user)\.nuget\packages.

5) when you insall this new version of the nuget package, please build your main project again to run the target to generate the files.

Besides, there is also a similar issue about this.



来源:https://stackoverflow.com/questions/64160274/including-a-folder-in-nuget-package-and-have-it-install-into-project-as-file-ne

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!