gpt4 book ai didi

c# - 使用 project.json 在 nuget 包中包含内容文件

转载 作者:行者123 更新时间:2023-11-30 12:22:13 24 4
gpt4 key购买 nike

我正在使用这个 .nuspec 文件生成一个 nuget 包。

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>ClassLibrary1</id>
<version>1.0.0</version>
<title>Title</title>
<authors>Author</authors>
<owners>Owner</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Description</description>
<copyright>Copyright 2017</copyright>
<contentFiles>
<files include="any/any/myfile.xml" buildAction="None" copyToOutput="true" flatten="true" />
</contentFiles>
</metadata>
</package>

在构建引用此 nuget 包的项目时使用此配置,内容文件将被复制到输出文件夹。现在我正在将我的项目转换为 .Net 核心项目,我想使用 project.json 生成 nuget 包并删除 .nuspec 文件。这是我的 project.json

{
"version": "1.0.0-*",
"dependencies": { },
"frameworks": {
"net452": {
}
},
"packOptions": {
"files": {
"mappings": {
"contentFiles/any/any/myfile.xml": "Configuration/myfile.xml"
}
}
},

"scripts": {
"postcompile": [
"dotnet pack --no-build --configuration %compile:Configuration%"
]
}
}

现在的问题是,在构建引用此 nuget 包的项目时,它也会尝试编译内容文件。构建失败。如何从编译中排除 contentFile?

最佳答案

Support for content is currently disabled for similar reasons for scripts and transforms, but we are in the process of designing support for content.

这是来自官方 nuget 文档页面。您可以找到信息 here .

关于c# - 使用 project.json 在 nuget 包中包含内容文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41827597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com