Questions tagged [precompiled]

154 questions
40
votes
4 answers

The directory '/website/App_Code/' is not allowed because the application is precompiled

How can I resolve the below issue that I get when I am running my precompiled web app? Server Error in '/CRM' Application. The directory '/CRM/App_Code/' is not allowed because the application is precompiled. Description: An unhandled…
shalsoft
  • 457
  • 1
  • 5
  • 13
28
votes
4 answers

How to compile a resource into a binary in Haskell?

Say I have a dictionary.txt file, I need to read it into a map and use it in my program, how can I make this dictionary.txt file contained in the compiled exe file?
Sawyer
  • 15,581
  • 27
  • 88
  • 124
25
votes
2 answers

What is the difference between allowing a precompiled Visual Studio Web Page to be updatable and not?

I've built a web site several times using the default "allow this precompiled site to be updatable" however on the most recent compile the website was very broken. After playing around with the .dll's (deleting and replacing them, in the bin) I…
meltdownmonk
  • 493
  • 2
  • 7
  • 17
24
votes
1 answer

What is the purpose of precompiledApp.config?

If you precompile a web site and keep it updatable, the ASP.NET parser can see from the Page directive that there is no codefile or codebehind and where to find the base class (inherits attribute). <%@ page language="C#" autoeventwireup="true"…
Michiel van Oosterhout
  • 22,839
  • 15
  • 90
  • 132
24
votes
1 answer

Could not find file PrecompiledApp.config when working with precompiled Razor views and VirtualPathProviders

We have an application using WebForms .aspx files for just about everything. Latley we have been using precompiled RazorViews as a way of getting nicley packeted functionality by simply dropping a new dll in our project. But now we have discoverd…
21
votes
3 answers

Python SVN bindings for Windows

Where can I find precompiled Python SWIG SVN bindings for Windows?
Joshua
  • 26,234
  • 22
  • 77
  • 106
18
votes
3 answers

Precompiled CSS not found in Rails 3.1 production mode

When I start up rails in production mode, it precompiles all the assets but is unable to serve the application.css asset. I looked in public/assets and the precompiled application.css exists. However, I get a 404 whenever I try to access it from the…
Kiran Ryali
  • 1,371
  • 3
  • 12
  • 18
17
votes
6 answers

Decompile Precompiled Source Code ASP.NET

we have an application in production and the code is in Pre-Compiled form. The developer who developed that application left the company and we don't have any backup of source code. the only access we have is Pre Compiled code in the server. We need…
msbyuva
  • 3,467
  • 13
  • 63
  • 87
16
votes
3 answers

rails 4 image_tag is not linking to my digested image assets

In rails 4 my image_tag("assets/logo.png") is not linking to the file with digest, the assets are precompiled also the images they are in public/assets/* My production.rb: Books::Application.configure do # Settings specified here will take…
Rubytastic
  • 15,001
  • 18
  • 87
  • 175
13
votes
2 answers

How do you precompile the native extensions for a ruby gem for linux?

We have a ruby application that depends on a gem with native extensions (in this specific case Nokogiri). However, for various reasons we cannot install the build prerequisites (such as build-essential, libxslt-dev, ruby-dev, etc) for that gem onto…
Jacob
  • 22,785
  • 8
  • 39
  • 55
11
votes
3 answers

How to precompile a Web Application project?

I've heard recently that you can precompile Web Application projects. My question is how? Right now, when I do a publish for my web application and select only files needed to run this application I get it published but it still has all my ASPX…
Earlz
  • 62,085
  • 98
  • 303
  • 499
11
votes
2 answers

Entity Framework startup time

I'm wondering if it is possible to speed up the first query made with EF code first. I've made a small test program with one entity containing 2 fields, and the first query takes 2.2 seconds, the second query (which is the exact same) takes 0.006…
9
votes
2 answers

RoR Precompiling Assets fail while rake assets:precompile - on basically empty application.js

Running: bundle exec rake assets:precompile RAILS_ENV=production --trace ** Execute assets:precompile:primary rake aborted! TypeError: Object doesn't support this property or method (in C:/Sites/MyApp/app/assets/javascripts/application.js) Here…
asarig
  • 197
  • 2
  • 9
8
votes
1 answer

Finding locally compiled Raku modules

How can find modules that have been installed locally, and which I can use in a Raku program? Assume that we have three distributions: Parent, Brother, Sister. Parent 'provides' Top.rakumod, while Brother and Sister provide 'Top::Son.rakumod' and…
Richard Hainsworth
  • 1,585
  • 7
  • 9
8
votes
1 answer

RazorViewEngine.FindView can't find the precompiled view

App.Web and App.Views are my projects in one solution, I put my views in App.Views and precompiled with RazorGenerator. It's working well if I used App.Web like, ~/Views/Index.cshtml is virtual path of my view in App.View It can successfully…
Okan Kocyigit
  • 13,203
  • 18
  • 70
  • 129
1
2 3
10 11