【发布时间】:2017-09-21 19:26:00
【问题描述】:
我一直在尝试从github 上发布的源代码为 atom 文本编辑器做出贡献。我正在从源代码构建应用程序。
这里是一些快速的系统信息。
操作系统: Windows 10(x64)
命令结果: apm -v
apm 1.16.1
npm 3.10.5
node 6.9.5 x64
python 2.7.13
git 2.11.0.windows.3
visual studio 2015
我已经运行了原子documentation (windows build) 给出的命令,它已经正确地创建了一个输出文件。(命令在下面列出)
cd C:\
git clone https://github.com/atom/atom.git
cd atom
script\build
我在 Visual Studio 2015 中将 atom 文件夹作为网站打开。我认为这是正确的,但我并不完全确定。下面是我在 Visual Studio 2015 中的解决方案资源管理器的图像。对于项目 atom,如前所述,它作为网站打开。
现在,当我尝试在 Visual Studio 中构建此应用程序时(它表示构建成功),但我收到错误 HTTP 错误 403.14 - Forbidden(Visual Studios 打开本地主机)。我遵循了微软支持website的方法,但这些解决方案并没有解决我的错误。我想知道是否应该将应用程序构建为 Visual Studio 中的网站。这可能是导致此错误的原因吗?
其他信息:
Web.config 内容:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
</configuration>
【问题讨论】:
标签: build coffeescript atom-editor