Questions tagged [precompiled]
154 questions
0
votes
2 answers
deploying a precompiled website: Ambiguous match found error
I'm trying to deploy a website (website project) made in Visual Studio 2010, .NET 4. I've selected publish in VS, and left precompiled website selected. Then I copied the result on the ftp, and got this error:
Description: An error occurred during…

Tudor Carean
- 972
- 2
- 12
- 22
0
votes
1 answer
compile mysql_fdw for PostgreSQL 9.5 on win 2008r2
I am trying to compile mysql_fdw found on github for PostgreSQL 9.5 on Win Server 2008R2 64bit machine.
I use Visual Studio 2012 with toolkit for 64bit systems.
First I installed Mysql C library. I was using steps provided here and the results were…

Jeca Techy
- 21
- 2
0
votes
2 answers
Precompiling and Deploying website from Visual Studio Team Services
We're using Visual Studio Team Services with Git as the source control system and I've configured a build which executes successfully online. Ideally I'd like to:
After building the site in VSO, precompile and dump the aspx and .dll files to the…

Echilon
- 10,064
- 33
- 131
- 217
0
votes
1 answer
How do I get a precompiled binary for glu?
I have MinGW and MSys set up on a windows 7 machine, but the glu libraries that came with it are old, and dont support gluBuild3DMipmaps. I have searched everywhere for a precompiled glu library for MinGW that I can use, but I can't find anything...…

Ned Bingham
- 2,749
- 18
- 23
0
votes
0 answers
Sqlite3 C++ on VIsualStudio 2013 - problems with libraries/precompiled binaries
Hey guys I have some questions to You connected with including sql precompiled binaries or sql libraries to my c++ code.
First of all I tried to include just a library from the https://www.sqlite.org/download.html (simple - #include "sqlite3.h")…

theCember
- 71
- 1
- 7
0
votes
0 answers
Get the windows 2010 command prompt for python precompiled libraries
While this isn't a direct programming question, it's something that has been bothering me for quite some time. And keeps annoying me to no end, and I expect others also have this problem.
On windows quite a few libraries require you to use a…

paul23
- 8,799
- 12
- 66
- 149
0
votes
2 answers
cmake precompiled header in shared library
I'm trying to precompile my headers using gcc and cmake.
I know some scripts like cotire or customPCH do it, but I would like to write my own script.
The project is pretty simple : there is a shared library with some files, and a main calling…

flod
- 235
- 4
- 12
0
votes
4 answers
Simple asp.net precompilation issue in IIS
Looks like I am struck with a simple issue. I am hosting a precompiled website. It compiles and works fine in my local box. But when I host in IIS it fails with following error.
Could not load type 'MyHero.Home1'.
<%@ Page Language="vb"…

user376250
- 45
- 8
0
votes
1 answer
How can I connect an already existing/compiled .dll to a new project in Visual Studio?
I have a previously compiled dll file. I've lost the source code unfortunately.
But I know the functions, header names and namespaces on it.
Is it possible to add this dll to a new project in VS? If so what code should I use? (not sure how to use…

Glitch
- 595
- 6
- 18
0
votes
1 answer
Files get deleted from virtual directory of precompiled 64-bit web site project
I have a Web Site Project, which actually runs in 32-bit enabled app pool, .net 2.0, IIS 7.5, Windows 7.
Here is the scenario that failing (but most important how it is failing). I pre-compile this site for x64 using aspnet_compiler.exe. I created…

T.S.
- 18,195
- 11
- 58
- 78
0
votes
3 answers
How to optimize mysql queries for performance under high load?
I'm a bit confused about how to optimize my SQL queries. I have a mid-complex query with some joins to run a hundred to thousand times per second (two tables on SSD, one table in RAM, 4 JOINs)
How can I minimize the overhead for execution? Is there…

McJoey
- 2,388
- 1
- 12
- 7
0
votes
2 answers
Integrating LibYUV to my Android Studio Project
I was wondering how do I include libyuv library to my Android Studio Project. I have the "libyuv_static.a" file which is a pre-compiled binary file but I did everything to include it in my project. I created a folder inside src/main named jniLibs…

Nav Nav
- 169
- 1
- 20
0
votes
1 answer
LinqtoSql Pre-compile Query problem with Count() on a group by
Have a LinqtoSql query that I now want to precompile.
var unorderedc =
from insp in sq.Inspections
where insp.TestTimeStamp > dStartTime && insp.TestTimeStamp < dEndTime
&& insp.Model == "EP" &&…

Joe Pitz
- 2,434
- 3
- 25
- 30
0
votes
1 answer
Pre Compiled Views in ASP.NET MVC & JS files
We are using plug-in approach for module development in asp.net MVC. We use pre compiled view approach for each module and is added as separate web project and referred by main web project. only main web project is deployed in IIS.
My Question -…
0
votes
4 answers
Check if ascx control exist in precompiled asp.net website
I would like to check if an ASCX file exists before I open it because it is loadded dynamically. That should be easy by using the following code:System.IO.File.Exists(Server.MapPath(controlPath)). But this doesn't work in precompiled website because…

AlbertK
- 11,841
- 5
- 40
- 36