Questions tagged [precompiled]
154 questions
1
vote
2 answers
missing .cs files in precompiled website with c# in asp.net
I need to change the code of some asp.net application but the application is missing its .cs files, there are only .aspx files. As I read in google, I understand that the application is a precompiled website. I am not too familiar with it so the…

Greg
- 163
- 1
- 5
- 11
1
vote
1 answer
Single shared precompiled header for C++ project (multiple libraries and executables) using CMake
I would like to know if anyone here has managed to use CMake to build a precompiled header in a single location within a project and then use it from that location to build the other libraries and executables of the project. The only way I have…

tatones
- 81
- 4
1
vote
0 answers
error LNK2005 when c++ lambdas used with /Yu flag in vs2012
I have the following function in one of my utility header files.
template
static void rtrim(std::basic_string, std::allocator> &t)
{
t.erase(find_if(t.rbegin(), t.rend(),
[](T& c)->bool{…

sreeram
- 21
- 2
1
vote
3 answers
Pre-compile specific directories in ASP.NET website project
I have an ASP.NET website project which has a mixture of updateable pages and pages that do not change.
Is it possible for me to pre-compile certain directories that contain pages/controls that will not be updated?
If so, how could I designate these…

frankadelic
- 20,543
- 37
- 111
- 164
1
vote
3 answers
Adding "On The Fly" page to precompiled ASP.Net Site
If a site is a precompiled ASP.net site, is it possible to add a .aspx and .aspx.cs or aspx.vb file to the site in a new directory and have those pages work/compile on the fly?
Or do these files need to be added to the project, re-publish the site,…

DSimmon
- 11
- 2
1
vote
2 answers
How do you set up LuaBind with visual studio 2012?
I've been trying to do this for a day. I've read through the documentation, and searched online for help. I just can't seem to figure it out between different versions of boost/lua/luabind used with precompiled headers, and VS2010 vs VS2012.
I…

user1718682
- 71
- 1
- 8
1
vote
1 answer
Rails 4, Heroku doesn't recognize precompiled manifest-(fingerprint).json
After upgrading to Rails 4, public/assets/manifest.yml is not generated anymore. Instead the different formatted manifest-(fingerprint).json is present.
But it seems to me that the server is still looking for the old manifest.yml format, ignoring…

RastacraZ
- 63
- 1
- 9
1
vote
1 answer
Precompiled Headers when using 3rd Party Source Code
I'm getting the following error:
error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "stdafx.h"' to your source?`
Which of course is a fair error, and I've dealt with it before. However,…

Mike Weir
- 3,094
- 1
- 30
- 46
1
vote
1 answer
Rails 3 ActionView::Template::Error (application.css isn't precompiled) in DEV Environment
I just clone my repo into my server and created a vhost for it.
However I keep getting:
ActionView::Template::Error (application.css isn't precompiled):
I already executed RAILS_ENV=development bundle exec rake assets:precompile
and I'm still…

content01
- 3,115
- 6
- 41
- 61
1
vote
0 answers
Backbone Marrionett and precompiled handlebars templates
Background
I am trying to pass data to a precompiled handlebars template using Backbone.Marionette.
These template renders but data is not populated in template. Can anyone say what I am doing wrong?
Using the backbone.Marionette.handlebars…

Joel Ephroni
- 103
- 1
- 5
1
vote
2 answers
Rails 3, javascript is "not found" when running in production
I know it's related to assets, I do precompile the assets with
bundle exec rake assets:precompile
But the browser gives me 404 for only one javascript (jquery.formalize.min.js) file, which is not generated for some reason. There is however the…

valk
- 9,363
- 12
- 59
- 79
0
votes
1 answer
Can you precompile and merge part of an ASP.NET website and then continue development?
A big part of the web site is precompiled and merged, since it's almost never going to change. The precompiled bits can be replaced in case of updates to the original. I want to continue development of new pages, but when I browse to a new page I…

Michiel van Oosterhout
- 22,839
- 15
- 90
- 132
0
votes
2 answers
Rails assets precompile mysterious error
I have a really nasty and persistent problem in assets precompile which I seem not to be able to solve by myself. The compilation always fails in some file that does not have an error. For example the error below is in the file copies.js.coffee that…

Kari-S
- 61
- 2
- 3
0
votes
2 answers
Precompiling uploaded assets
I have a rails 3.1 application where users upload pictures. I am storing them in /assets/images since that is the path image_tag looks for instead of public/images.
Everything works fine in development but I deployed to Heroku and it gives me this…

Ibrahim Muhammad
- 2,808
- 4
- 29
- 39
0
votes
1 answer
application.js isn't precompiled
I'm not sure why, but whenever I run rake assets:precompile, application.js doesn't get compiled. I get a "application.js isn't precompiled" error in production mode.
Here is my Gemfile if it means anything:
source 'http://rubygems.org'
gem…

SnakeWasTheNameTheyGaveMe
- 2,522
- 2
- 28
- 70