NuGet 更改 .ascx.cs 文件夹位置,在 VS 中给出引用错误
我正在尝试制作一个 NuGet 包,其中包含两个 .ascx 和两个 .ascx.cs 文件。所有四个文件都位于同一文件夹中,而不是位于 app_code 文件夹中。现在,当我制作 Nuget 包时,它会将 .cs 放入 app_code 文件夹中,从而出现 “不包含定义...您是否缺少 using 指令或程序集引用?”
错误.cs 文件尝试引用 .ascx 上的控件。现在我想知道两件事:
当 .ascx.cs 文件位于不同的文件夹中时,如何从 .ascx.cs 文件到 .ascx 文件进行引用,以便我可以再次对控件进行编程?
如何使用 NuGet 覆盖 .cs 文件的文件夹位置?我尝试使用
标签,如下所示:
但当我使用 7zip 打开包并查看其中的 .nuspec 时,NuGet 似乎忽略了这一点。
提前致谢!
I am trying to make a NuGet package, with two .ascx and two .ascx.cs files. All four files are in the same folder, not in the app_code folder. Now when I make a Nuget package, it put's the .cs's inside the app_code folder, giving me the "does not contain definition for...are you missing a using directive or assembly reference?"
error for the .cs files trying to reference controls on the .ascx. Now what I want to know is two things:
how can I make a reference from the .ascx.cs file to the .ascx when they're in different folders so I can program the controls again?
how can I override the folder location for .cs files with NuGet? I tried using the
<files>
tag like this:<files><file src="somepath\*.ascx.cs" target="somepath"/></files>
but when I open the package with 7zip and look at the .nuspec there, it appears NuGet just ignores that.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(取自 David Fowler 的评论,因此可以将其标记为已回答)
这是 a NuGet 中的错误现已修复:-)
(Taken from David Fowler's comment, so this can be marked as answered)
This is a bug in NuGet and has now been fixed :-)