Questions tagged [precompiled]
154 questions
1
vote
0 answers
How to precompile ASP.NET with version numbers on all Assemblies
Background:
I'm precompiling a web application with aspnet_compiler.exe. Everything is working but great but I noticed that the version numbers specified in AssemblyInfo.vb are only applied to the App_Code.dll, App_Browsers.dll etc but not to the…

Dave Becker
- 1,433
- 1
- 12
- 24
1
vote
2 answers
Creating a program that will run before and after compilation in Eclipse
I am currently working on a small program that should comment out some code used for testing.
I want it to auto run before the compiler while compiling the release version and another program that will comment the code back in after compilation was…

Mashiah
- 111
- 1
- 6
1
vote
1 answer
'WebForm_PostBackOptions' is undefined Error on ASP.Net website
My precompiled ASP.Net 4 website has just developed a JavaScript error on a button click event that is supposed to postback to another page.
I have never seen this error before and the site was working. What the heck have I done? I'm not even sure…

ComfortablyNumb
- 1,448
- 10
- 37
- 64
1
vote
1 answer
Import library to a precompiled ASP.NET website
I'm working on a C# updatable ASP.NET 2.0 precompiled website. Since the code-behind cannot be altered (source code is not available), I'm adding code directly inside the aspx files (inside the script tag).
The trouble is that a lot of identical…

jdecuyper
- 3,934
- 9
- 39
- 51
1
vote
4 answers
VS 2010 pre-compile web sites with build process?
VS 2010; TFS 2010; ASP.Net 4.0; Web Deployment Projects 2010;
I am using the build process templates in order to do one-click deploys (for dev and QA only). I want my sites to be pre-compiled. I can do it with the command line, using:
…

dah97765
- 679
- 1
- 13
- 29
1
vote
2 answers
WCF service in a precompiled web application - Could not load file or assembly
I have a solution which contains multiple WAPs (Web Application projects).
Every WAP has it's own Web Deploy project in order to be able to precompile these sites.
On one of the web app we are created a new WCF file with…

Zoltan Veres
- 355
- 5
- 27
1
vote
0 answers
Advantage of C++20 modules over precompiled headers for compiling speed?
C++20's module feature is supposed to improve compile speed. But what is the advantage over precompiled headers, which also makes it fast to include a library?

felix
- 647
- 1
- 6
- 10
1
vote
2 answers
How to tell what page a dll refers to in precompiled ASP.NET site
I'm using a pre-compiled ASP.NET 2.0 site (i.e., copied to the server using the "Build->Publish Web Site" feature in Visual Studio 2005). I catch and log all errors which are usually quite detailed, but lately I've been getting the following error…

Rick
- 1,863
- 2
- 19
- 46
1
vote
1 answer
Matterbridge does not start on Heroku - is there a way I can check how the build on the plattform looks like?
As showcase and demo version I want to run a matterbrige within the free plan of heroku. For this i found this nice repository from patcon. He forked it and improved it in my eyes by explaning how you run it as web dyno in a permanent way and so it…

WebMacke
- 11
- 1
1
vote
2 answers
Is the Publish option in Visual Studio considered pre-compilation for ASP.net Web applications?
I'm having trouble understanding when the site is considered "pre-compiled". As I understand what I've read, if I use the Publish or Build Deployment Package options from within Visual Studio then it is pre-compiling, but if I just use something…
user4903
1
vote
2 answers
Adding library code to your project, or use precompiled binaries?
I need some advice on my project. I am going to use various C++ libraries to accomplish different tasks. I am using Visual Studio 2008. To me, it seems to get a little out of hand when I add the actual source code of the library to my project's…

QAH
- 4,200
- 13
- 44
- 52
1
vote
1 answer
How to remove pre-compiled JSPs and just use JSP to serve files
I have a legacy Struts 2 application configured as a dynamic web application in Eclipse that pre-compiles JSPs and puts them under WEB-INF/classes/org.
They are mapped in web.xml as as servlets.
I tried removing the mapping of the servlets in…

Robbi Palacios
- 11
- 3
1
vote
0 answers
How do I use precompiled C libraries on a non-rooted device through Android Studio?
I cross compiled a C library for Android. I copied the bin folder files to the Android xbin directory on a rooted device and I was able to use the library's commands. Can I do the same on a non rooted device through Android app/Android studio? I…

Doha
- 325
- 2
- 13
1
vote
1 answer
Working with a precompiled VB.net website
I am working with a precompiled ASP.net website. I have most of the *.aspx.vb files, but I am missing some of the library files, and only have the DLLs. Can I still selectively compile aspx.vb files? When I just hit build, It errors with 'This…

Jonathan Dobbie
- 176
- 1
- 6
1
vote
1 answer
Using a precompiled version of Vowpal Wabbit - Downsides?
Due to the difficulty of compiling VW on a RHEL machine, I am opting out to use a compiled versions of VW provided by Ariel Faigon (thank you!) here. I'm calling VW from Python, so I am planning on using Python's subprocess module (I couldn't get…

Jenna Kwon
- 1,212
- 1
- 12
- 22