Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I have downloaded web project source code from github.I am using VS2015 enterprise edition and when build the project it throws below two errors.
The source code is in vb.It always throws error and due to that I could not modify existing source code.
BC2008 - No input sources specified
BC2011 - BC2011 unable to open response file 'C:\Windows\System32\config\systemprofile\AppData\Local\Temp\tmp96de1e2bc3d24b21b1987021ee3aa247.rsp'
I have uninstalled and reinstall VS2015 and it resolved this error.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I want to use #Grab to include a yaml parsing library inside my Jenkinsfile. I add this line in my Jenkinsfile:
#Grab('org.yaml:snakeyaml:1.17')
https://bitbucket.org/asomov/snakeyaml
However, the Jenkins run can't recognize this and return an error.
You cannot use #Grab in pipelines at the moment. I doubt it will be added as a feature because Jenkins CPS needs source code to be able to perform CPS transformations, and #Grab uses binary dependencies. You can only use #Grab from trusted shared libraries. From the documentation:
It is possible to use third-party Java libraries, typically found in Maven Central, from trusted library code using the #Grab annotation. Refer to the Grape documentation for details, but simply put:
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have scoured the web looking for the Sonar Delphi plugin 0.2 (sonar-delphi-plugin-0.2-SNAPSHOT.jar). Since the shutdown of codehaus, it seems this plugin is not available anywhere else?
http://snapshots.repository.codehaus.org/org/codehaus/sonar-plugins/sonar-delphi-plugin/0.2-SNAPSHOT/
There is several references to this URL, but I cannot find this plugin anywhere else.
Does someone please know where I can download it, or possibly has it available to share?
The plugin was abandoned and picked up by Fabricio Colombo and relocated to github
https://github.com/fabriciocolombo/sonar-delphi
Look at 'Releases' to get the latest plugin .jar
If you really want the 0.2 snapshot... it appears that you can use the "Wayback Machine" internet archive to grab it at:
https://web.archive.org/web/20140324100408/http://snapshots.repository.codehaus.org/org/codehaus/sonar-plugins/sonar-delphi-plugin/0.2-SNAPSHOT/
I have just published an updated version our SonarQube Delphi plugin which supports Sonar 7.9 LTS and also the latest 8.2 version, see https://github.com/mendrix/SonarDelphi.
If you combine this with the DelphiCodeCoverage tool (see https://sourceforge.net/projects/delphicodecoverage/) and DUnitX (including the additional file in our SonarQube repository) you have a fully functioning SonarQube plugin for Delphi.
GitHub has these three projects of Sonar from Codehaus:
https://github.com/codehaus?utf8=%E2%9C%93&query=sonar
The project sonar-plugins is empty but references on https://github.com/sonarcommunity.
There are plenty of plugins. See if you can find it there.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
In an earlier version of delphi (2007/2009) I found a way to debug the application without recompiling.
But I can't find it in XE5:(
I often find my self in need of restart debugging to debug a condition that only appears on application load.
So avoiding an unnecessary compile would be a great time saver.
Best regards
Ove B-)
I am not sure if this is what you need, but you can debug an application without having delphi trying to recompile it by following these steps:
launch the application outside of the debugger (with "run without debugging" or by executing it from windows)
attach the debugger to the already running instance you just created by using the delphi menu item "Run->Attach to process..."
Edit: a little error i made: you actually have to launch your program from windows: using the "Run without debugging" option from the IDE will make delphi try to recompile the project.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a MVC project. I am not interesting a publishing my project. because after publishing it creates a single Dll. that times i am not able to change code of a particular page.
I want to direct upload a files or folders of MVC projects. Can It possible. if possibles, please explain me..
Regards,
Bharat Gupta
You can't. IIS is not a compiler and cannot compile your source files. It can, however, understand a DLL. When you publish your project, only the source code files (for example .cs) will be compiled and packed in the DLL. All other resources, such as scripts, images and even views, are shipped as is. You can only make changes within these files. This means that after publishing you can change your JavaScript code, or CSS styles or even "Razor code" inside your views (e.g. ".cshtml"), but you cannot change the code inside controllers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
While executing the "update-database" in package manager console i am getting this kind of error.
i am using MVC4 with Code-first
[First time i am executing this comment the table is created based on model.After that i deleted one property from the model so i deleted the "UserProducts" table.and again i run the application that time i got this error.
please help me to find the problem.]
"Cannot find the object "dbo.UserProducts" because it does not exist or you do not have permissions."
If this is your first time creating the database using package manager, you need to add/create a migration before updating the database. Or, you may be missing a migration file.
Try this:
//First create a migration
PM> add-migration give_it_a_name
//Then update the database
PM> update-database