Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
11answers
2k views

Can Ruby, PHP, or Perl create a pre-compiled file for the code like Python?

For Python, it can create a pre-compiled version file.pyc so that the program can be run without interpreted again. Can Ruby, PHP, and Perl do that same on the command line?
8
votes
2answers
1k views

Why is aspnet_compiler.exe so slow (and can it be made any faster)?

During our build process we run aspnet_compiler.exe against our websites to make sure that all the late-bound stuff in ASP.NET/MVC actually builds (I know nothing about ASP.NET but am assured this is ...
5
votes
3answers
8k views

How to run a command at compile with in Makefile generated by CMake?

I would like to pass some options to a compiler. The option would have to be calculated at compile time - everytime when 'make' is invoked, not when 'cmake', so execute_process command does not cut ...
3
votes
3answers
967 views

Global resources can't be resolved after publishing Website in VS2008

I have a web-project running in VS 2008. We have some global resource files (*.resx) in the App_GlobalResources folder for internationalisation. All this works like a charm on my local IIS ...
2
votes
3answers
346 views

application.css not being served as an asset

EDIT 4, 5 and 6 8 hours in, any more ideas are welcome :) Maybe this bug is already known and solved, but I get the behaviour I described in edit 2&3, when you have this in a .css.erb file in ...
2
votes
3answers
511 views

How to set ISPP defines based on default Inno Setup variables?

I was trying to: #define CommonAppData {commonappdata} but it yields: Compiler Error [ISPP] Expression expected but opening brace ("{") found. How to achieve this with Inno Setup ...
1
vote
0answers
97 views

linq to sql query precompilation

Depending on the value of search parameters linq can build different sql queries if there is conditional logic in the where clause. How about taking advantage of query precompilation in this case ...
0
votes
1answer
64 views

Poor time performance of 'rake assets:precompile'

Running: bundle exec rake assets:precompile RAILS_ENV=production Takes about 6 minutes for 15 .js files of about 250kb total. It should not take this long surely? I see the 'Microsoft Console ...
0
votes
1answer
701 views

Could not load type 'ASP.xxx' when referencing a precompiled master page

I'm attempting to precompile a few master pages (not update-able) to share them across multiple applications. The project I'm precompiling is a Web Site. The project that references precompiled ...
0
votes
2answers
151 views

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 ...
0
votes
1answer
56 views

Can I apply PL/SQL beautifer rules from command line?

Topic is self-explanatory. My goal is to automate the process of code beautification, so a program like SQLPlus will compile code after it has been beautified.
0
votes
2answers
46 views

Pre-Compiled websites code security

How far pre-compiling a website or project in VWD is safe ? I know that Reflector can retrieve the whole thing again (as it will be IL at the end of the day), and I heard that obfuscation won't go so ...