Visual Studio 解决方案和正在运行的应用程序之间的 .NET 互操作性
对 .ASPX 页面的修改会使 ASP.NET 编译器自动重新编译网站。我目前所处的情况是模板在代码中编译并缓存在变量中。编译过程在应用程序启动时运行,这很好(不应该在每个请求上运行)。当新的模板文件添加到解决方案中或修改现有模板时,理想情况下应该再次运行编译过程。
是否可以将 Visual Studio 中的函数调用到我的应用程序中?或者这里存在一些设计缺陷?这一切都发生在开发阶段,而不是在生产阶段。
Modifications to .ASPX pages make the ASP.NET compiler recompile the website automatically. I'm currently in a situation where templates are compiled in code and cached in a variable. The compilation process runs when the application starts this is good (should not be on every request). When new template files are added to the solution, or when existing templates are modified the compilation process should be run once again ideally.
Is it possible to invoke a function from Visual studio into my application? Or is there some design flaw here? This all takes place during development phase, not when in production.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我开始使用 FileSystemWatcher 它可以满足我的需要高效。
I started using a FileSystemWatcher which does what I need quite efficiently.