The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

How to catch aspnet_compiler error in batch file

I am using aspnet_compiler to compile a website solution and export it to a folder for handling to be published. I want to stop the batch file if the process does not complete, but I can't find out ...
1
vote
1answer
23 views

Pre-Compile During Build returns Error ASPNETCOMPILER(0,0): Error ASPRUNTIME: startIndex cannot be larger than length of string

This question is similar, but I think not the same msbuild ASPNETCOMPILER ASPNETRUNTIME startIndex error I have a Web Application which I am trying to publish using Visual Web Developer 2010 ...
1
vote
0answers
36 views

Issues with aspnet_compiler and first time load

I have a fairly large site trying to solve for first time hit penalties. Attempting to use aspnet_compiler to pre-compile does not seem to be working as I thought it would. I run the command as ...
4
votes
1answer
106 views

Adding custom attributes to MSBuild Task

I have TeamCity running MSBuild task for an ASP.NET MVC 3 application. Now every now and then (seemingly randomly) it throws "ASPNETCOMPILER : error ASPRUNTIME: The application domain in which the ...
0
votes
0answers
61 views

Why does aspnet_compiler succeed with updateable flag, but fail otherwise?

We're investigating the feasibility of pre-compiling our website to improve site startup time. What we're trying to avoid is any invocation of csc.exe when users hit the site. While csc.exe is ...
0
votes
0answers
61 views

Why does aspnet_compiler find multiple types?

I'm trying to get our website compiled with aspnet_compiler. Unfortunately, I'm getting this error: F:\WebSite\Controls\Control.ascx(34): error CS0433: The type 'Website.Container' exists in ...
0
votes
0answers
32 views

should I compile app_code into dll for cold startup time?

my aspnet web site has long cold startup time. to avoid delays after updates should I use separate dll project instead of putting code into app_code folder? as framework, which is 4.5, recompiles all ...
0
votes
1answer
147 views

How can I compile a C# solution without involving Visual Studio?

I'm someone who does not particularly like Visual Studio at all and would much, much rather use my highly configured gvim to edit code than be fenced into an IDE. As such, I'm aiming for a way to ...
10
votes
2answers
508 views

Why does the ASP.NET Compiler rebuild all binaries in every build?

When I recompile my project (asp.net, c#) with aspnet_compiler the rebuilt binaries change (when compared to the previous build) even if no code changes have been made. This, I understand, is due to ...
1
vote
0answers
69 views

How do I make MvcBuildViews continue to other views on error?

I've got a handy visual studio external tool shortcut to build the current project with MvcBuildViews enabled. Arguments: /m:2 $(ProjectFileName) /p:MvcBuildViews=true Command Line: ...
19
votes
2answers
556 views

Avoid aspnet_compiler running PreApplicationStart method

So, one of my websites has a PreApplicationStartMethod that should run before the application starts: [assembly: PreApplicationStartMethod(typeof(ServiceStackAppHost), "Start")] This methods does ...
1
vote
0answers
191 views

msbuild ASPNETCOMPILER ASPNETRUNTIME startIndex error

I have a web project that builds fine on Windows 7 with no error. When I upgraded to Windows 8, compiling the project into a compiled website throws an error. Compiling from the csproj file (not ...
0
votes
0answers
112 views

Passing aspnetcompiler arguments from msbuild through solution file not working

I have msbuild building a solution file that references a web site. When msbuild kicks off the aspnet_compiler, most (but not all) of the files inside my physical directory are not being copied to my ...
1
vote
2answers
84 views

Running Deployment project gives me “Something” is not a valid virtual path

I have a deployment project for web application when I run the deployment project it gives me this error Error 443 'http:/localhost:54333/Content/XXXX/XXXXXX/XXXXXX.ascx' is not a valid virtual ...
0
votes
1answer
129 views

Why does this call to aspnet_compiler not produce new .NET assemblies?

I'm trying to make Visual Studio precompile my ASP.NET application that will be deployed on Azure. I've added the following to my .csproj file: <Target Name="AfterBuild"> <Message ...
0
votes
0answers
83 views

aspnet_compiler throws error when project contains excluded files

The requirement is to precompile a web application project using aspnet_compiler via the command line. No alternatives! But there's a problem whenever there's an excluded file. It throws the ...
2
votes
1answer
174 views

Why do I need VirtualPath property for AspNetCompiler task

I'm trying to write a build system for a website so that I can do a one click build. I'm getting a clean copy of the code from the source code repository and then using msbuild to run a AspNetCompiler ...
0
votes
1answer
109 views

asp.net localized resources dll not created in temporary asp.net internet files

We are storing our localized resources in a separate assembly from our web application. After using xcopy deployment to our web server, the localized satellite resources.dll files are not being ...
0
votes
2answers
115 views

MVC3 .Net precompile issue in IIS 6

I have an MVC3 C# .Net web app and I am running aspnet_compiler on my app in order to precompile. I am running this command: aspnet_compiler -v /dev/boe Boe is the app in the dev structure under ...
0
votes
0answers
25 views

Aspnet compilier not verifying aspx pages in .net 4.0?

Posting here, because I can't seem to find any answers online. I'm sure I'm doing something wrong, but can't I've had our build system set up here for a while. Using msbuild, we do a number of ...
0
votes
0answers
124 views

how to use aspnet compiler to compile mutiple web applications at the same time

I have a folder "C:\WebApps" and contains multiple C# .Net web applications. WebApps -A_WebApp -B_WebApp -C_WebApp I also create an web application "Test" in IIS with physical path to ...
0
votes
1answer
201 views

aspnet_merge causing dll not found error

I use aspnet_compiler to precompile an asp.net website. Then, I run aspnet_merge to merge the precompiled assemblies into one. Unfortunately, aspnet_merge does not include one of the assemblies in ...
2
votes
1answer
205 views

Is aspnet_compiler.exe special?

I'm attempting to make a ASP.NET compilation tool for a project I'm working on. Using aspnet_compiler does work perfectly fine, but a custom tool would suite our purposes a little bit better. ...
0
votes
1answer
200 views

bug in aspnet_compiler?

I have a solution with several web projects. I have built each project into its own folder (there's about 10 projects): /build/projA /build/projB /build/projC If I call aspnet_compiler -v / -p ...
1
vote
1answer
370 views

What is the correct way to escape DisabledWarnings when calling MSBuild from the command-line?

I tried escaping the semicolons like this in the parameters: ...
4
votes
3answers
1k views

How do I get Team Build 2010 to publish web applications as non-updatable?

I'm trying to switch our build from CruiseControl.NET running a custom .msbuild file to Team Build 2010. The application being compiled is a VS2008 solution with numerous projects, two of which are ...
0
votes
0answers
333 views

ASPNETCOMPILER : 'System.Data' or one of its dependencies

I'm setting up a new build server. I can't get the project to build because of this error running 32 bit msbuild: (Build target) -> ASPNETCOMPILER : error ASPCONFIG: Could not load file or ...
3
votes
1answer
227 views

aspnet_compiler on Mono

I'm trying to write a build script for a ASP.NET MVC 3 web site for publishing on Mono. Although some devs use Windows for development, the site must be built on Mono, as the build and Web servers are ...
0
votes
1answer
644 views

Should I use the aspnet_compiler with a website project?

We use Nant and devenv.com to build all our assemblies including the website project. Then we would use aspnet_compiler.exe to compile the published website. Is this the correct way to do it? ...
1
vote
0answers
118 views

What exactly does aspnet_compile -v switch do?

The aspnet_compiler requires -v for virtual path (or -m from which it derives the virtual path), even when -p is specified. For example: aspnet_compiler -p c:\Projects\WebSites\WebSite3 -v /WebSite3 ...
1
vote
1answer
319 views

How to compile a Web Site Project directly out of Visual Studio without aspnet_compiler?

I have a Web Site project and want my .aspx and .cs to be compiled. For this I am using a the aspnet compiler like this: aspnet_compiler -v /My_Site -p c:\site_published_with_Visual_Studio ...
2
votes
1answer
175 views

w3wp.exe keeps reading my .compiled files

We are running an asp.net website on IIS6. We just moved from .Net3.5 to .Net 4.0. In our build process we use aspnet_compiler te precompile and also aspnet_merge to merge the assemblies. After we ...
0
votes
1answer
173 views

Automated WEB SITE deploy using CruiseControl

I have done some automated deploys for web projects before, but I am having a lot of difficulty setting it up for my web site because there is no .csproj file to reference with MSBuild. I have ...
2
votes
0answers
190 views

Precompile ASP.NET Application after Installation

I have an ASP.NET Application compiled into installation package using INNO Setup installer. When I install an application to the dedicated server I want to precompile the whole application so it runs ...
1
vote
1answer
402 views

Aspnet_Compiler to publish all dlls other than modified

In our continuous integration process we are using Aspnet compiler to publish the source. But while doing, it only publishes the modified dlls. Our task is like <AspNetCompiler ...
1
vote
3answers
137 views

How do I automate the building of a vs2005 website with msbuild?

I'm working with an old visual studio 2005 web site (not web application project). The current goal is to replicate our manual process as part of our automated builds. It is not currently an option ...
0
votes
2answers
517 views

Run equivalent to “Build Page” command for Visual Studio web site project from command line

As outlined in Tip/Trick: Optimizing ASP.NET 2.0 Web Project Build Performance with VS 2005, the "Build Page" command available within Visual Studio web site projects does the following: the ...
1
vote
1answer
220 views

How can I rename[space] a type in a .NET assembly

Given some assembly with some type in it, how can rename and renamespace that type so its in a different location? Or perhaps just extract the type and move it to a different assembly. Are there any ...
0
votes
3answers
554 views

How can ASP.Net Compiler exclude .svn directories in the deploy

On my local machine I have checked out a web application and then compiled it with MSBuild, and then pre-compiled and deployed it with the aspnet_compiler. The command line looks like: C:\Program ...
1
vote
0answers
239 views

Can aspnet_compiler see virtual subdirectories?

In IIS, I have a virtual directory for my website, which is on port 87, that points to sites\MySiteName\. There is also a virtual subdirectory within the site that points to ...
0
votes
2answers
955 views

Howto Force TFS 2010 to build a website using the 32bit ASPNET Compiler on a 64 bit build machine

We have a very large product that compiles just fine on our 32 bit build controllers and mostly on our 64 bit build controllers with one exception. We have a precompiled web forms front end. When it ...
4
votes
1answer
323 views

aspnet_compiler as a post-build event is encountering IIS error on an empty MVC3 app

I am running aspnet_compiler as a post-build event, using the following command: aspnet_compiler.exe -v / -p \ I am getting this error on compile: It is an error to use a section registered as ...
1
vote
1answer
267 views

Best mix of aspnet deployment tools

I know how many questions have been asked around this, but I still can't figure out the answer to my question. I need to deploy an ASP.NET 4.0 site, and I want to do something like this: Get ...
1
vote
1answer
281 views

How to compile aspx pages with cruise control.net

I have setup Cruise Control.Net 1.6.7981.1 for a ASP.Net project. It is currently building correctly with MSBuild. The MSBuild config file is setup as follows <msbuild> ...
1
vote
1answer
967 views

aspnet_compiler.exe finding multiple types in global alias, but I can't!

Inheriting a new project today, trying to make hundreds of warnings go away, and stumped on this. ASP.NET MVC 2, framework 4.0 project which compiles just fine in VS2010, but when the build process ...
0
votes
1answer
963 views

Can I target to framework64 the aspnet_compile when I call SourceAnalyzer - Fortify?

I'm creating a MSBuild to run Fortify Scan. The commands are: 1) sourceanalyzer -b MYBUILDID devenv SOLUTION.sln /REBUILD Debug 2) sourceanalyzer -b MYBUILDID -scan -f SOLUTION.fpr -format frp The ...
3
votes
1answer
926 views

ASP.NET compiler fails with an XmlSerializers error, during web-deployment project

We're using Visual Studio 2010 Web deployment projects to compile web-application websites during our build. Visual Studio 2010 is not installed on our build-agents. We get an error (see below) ...
0
votes
0answers
154 views

ClientBuildManager throws AspNetHostingPermission exception

I'm having a weird error when trying to create an instance of ClientBuildManager. Here is the code that throws the exception: public class createTest { public string test() { var ...
0
votes
1answer
925 views

How to make aspnet_compiler compile project dependencies?

I try to compile my web project with aspnet_compiler. aspnet_compiler -f -fixednames -u -v / -p C:\test\testproj\testproj c:\test\output -c The testproj is a web site that has a dependency to a ...
3
votes
1answer
235 views

AspNetCompiler including files that are not in my project

I'm using msbuild to automatically build and package a website ready for deployment. When I compile and then Publish my project through Visual Studio 2008 everything works fine. However when I use ...

1 2