为什么nuget包里的content里的内容在netcore项目里面不会复制到项目?但是在netframework里面就会复制到项目里面。
已解决:
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>TestContent</id>
<version>1.1.2</version>
<authors>TestContent</authors>
<owners>TestContent</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Package Description</description>
<dependencies>
<group targetFramework=".NETFramework4.5" />
<group targetFramework=".NETStandard2.0" />
</dependencies>
<contentFiles>
<files include="any\any\wwwroot\dfc\index.html" buildAction="Content" copyToOutput="true"/>
</contentFiles>
</metadata>
<files>
<file src="content\dfc\index.html" target="content\dfc\index.html" />
<file src="contentFiles\any\any\wwwroot\dfc\index.html" target="contentFiles\any\any\wwwroot\dfc\index.html" />
<file src="lib\net45\TestContent.dll" target="lib\net45\TestContent.dll" />
<file src="lib\netstandard2.0\TestContent.dll" target="lib\netstandard2.0\TestContent.dll" />
<file src="lib\netstandard2.0\TestContent.xml" target="lib\netstandard2.0\TestContent.xml" />
</files>
</package>
谢谢,已解决。
@sky_net: 你好,问一下你的问题解决了吗,我现在也是碰到了这个问题
你好,问一下你的问题解决了吗,我现在也是碰到了这个问题