草庐IT

去找不到包

全部标签

c# - 错误 - 使用 sdkToolsPath 找不到 al.exe

这个问题在这里已经有了答案:Taskcouldnotfind"AL.exe"usingtheSdkToolsPath(4个答案)关闭6年前。我将VisualStudio2012解决方案迁移到了VisualStudio2015。我在Windows10上工作。我的解决方案的目标.NETFramework是4.5。我想继续使用那个版本。所以我想我必须卸载.NETFramework4.6。ErrorMessage:Taskcouldnotfind"AL.exe"usingtheSdkToolsPath""ortheregistrykey"HKEY_LOCAL_MACHINE\SOFTWARE\

c# - 找不到 WCF 绑定(bind)错误?

我正在使用VSTS2008+C#+.Net3.0。我正在使用自承载WCF。执行以下语句时,出现以下绑定(bind)未找到错误。我已经发布了整个app.config文件,有什么问题吗?ServiceHosthost=newServiceHost(typeof(MyWCFService));错误信息,Configurationbindingextension'system.serviceModel/bindings/MyBinding'couldnotbefound.Verifythatthisbindingextensionisproperlyregisteredinsystem.ser

javascript - webpack:找不到模块:错误:无法解析(使用相对路径)

我有一个应用程序的结构(node_modules目录从这个列表中排除):├──actions.js├──bundle.js├──components│  ├──App.js│  ├──Footer.js│  ├──Link.js│  ├──Todo.js│  └──TodoList.js├──Containers│  ├──AddTodo.js│  ├──FilterLink.js│  └──VisibleTodoList.js├──index.html├──index.js├──main.js├──package.json├──package-lock.json├──reducers

javascript - Browserify - 找不到模块 'jquery'

我正在尝试将我的应用程序与browserify捆绑在一起,但出现此错误:Cannotfindmodule'jquery'from'/home/test/node_modules/backbone'现在已经有人问过这种性质的问题,但解决方案对我没有帮助。也许我有一些独特的案例。在另一个应用程序中,运行npminstalljquery修复了它。我的package.json中没有它,我也不需要在我的任何文件中使用jquery,就像所做的一样here.一切正常。在这个新应用程序中,它不会。我尝试用npm重新安装jquery。没有什么。在package.json中将它添加到我的依赖项中。没有什么

javascript - @types/react 找不到名称 'HTMLDialogElement'

我在使用typescript和@types/react时遇到了一个奇怪的构建问题。我有两个typescript配置文件:一个用于使用React的文件,一个用于不使用React的文件。在构建不使用React的项目部分时,我看到以下错误:node_modules/@types/react/index.d.ts(3508,58):errorTS2304:Cannotfindname'HTMLDialogElement'.node_modules/@types/react/index.d.ts(3508,78):errorTS2304:Cannotfindname'HTMLDialogElem

javascript - typescript 找不到名称 'IterableIterator'

我的typescript代码有问题通过tsc编译后,出现类似cannotfindsomenames的错误。app.ts(1,22):errorTS2304:Cannotfindname'IterableIterator'.app.ts(8,20):errorTS2304:Cannotfindname'IteratorResult'.app.ts(26,6):errorTS2304:Cannotfindname'Symbol'.app.ts(26,26):errorTS2304:Cannotfindname'IterableIterator'.我的代码是:classFibimplemen

javascript - Protractor 找不到 Angular

我似乎无法让Protractor意识到Angular已加载并正在运行。当它打开Chrome时,我的应用程序会在浏览器中完全加载,所以我知道Angular已正确加载和运行。配置文件:exports.config={seleniumServerJar:'C:/Dev/PrismWeb/selenium/selenium-server-standalone-2.35.0.jar',seleniumPort:null,chromeDriver:'C:/Dev/PrismWeb/selenium/chromedriver.exe',seleniumArgs:[],seleniumAddress:

javascript - React Native Expo 找不到变量自身

我在expo中创建新项目时突然遇到此错误,当我创建任何项目时它都能完美加载并且可以看到默认屏幕。当我尝试安装任何依赖项时,例如yarnaddnative-base它停止工作并给我无法找到变量Self和Expo被绞死请帮忙提前谢谢 最佳答案 对于使用expo-cli或XDE创建新项目的用户,您将在第一次“yarn”或“npminstall”后出现红屏“Can'tFindVariableSelf”。这是因为昨天发布了新的“whatwg-fetch”3.0.0(https://www.npmjs.com/package/whatwg-fe

javascript - 在 Babel 中导出 es6 类 - 找不到模块

我在SO上看到了这两个答案:ExportingaclasswithES6(Babel)TryingtoexportaclassasamoduleES6babel我没有使用Browserify,只使用Gulp和Node,只是想做个前言。文件/文件夹结构:././gulpfile.js./_GULP./_GULP/main_config.es6./_GULP/_classes/Gcfg.es6问题设置我正在导出类Gcfg.es6文件,如下所示:exportdefaultclassGcfg{constructor(){this.rootDir='./';this.latestDir='./_

javascript - Webpack ProvidePlugin 全局变量(找不到模块)

我是Webpack的新手,但无法弄清楚为什么我的ProvidePlugin调用没有按预期工作。我有以下文件:应用程序.jsvarApp=function(){getSomething:function(size){}}();module.exports=App;我希望这个“App”变量可以全局访问,因为其他文件是这样使用它的:布局.jsvarLayout=function(){App.getSomething('md');}();webpack.config.js在webpack.config.js中我有以下行:newwebpack.ProvidePlugin({App:'app'})