Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
803 views

How can I publish an ASP.NET MVC project from the command line?

I've got an existing web site that monitors an SVN repository for changes and when there is a check in, the new web site is built using aspnet_compiler and then a diff of what is on the production ...
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 ...
7
votes
1answer
590 views

Getting Could not load type errors while publishing

Getting following errors after trying to publish using aspnet_compiler errorASPPARSE: Circular file references are not allowed. errorASPPARSE: Unknown server tag 'uc2:FAQ'. errorASPPARSE: Could not ...
7
votes
5answers
4k views

aspnet_compiler ASPParse Could Not Load Type

I am unable to build my Web Application (not Web Site) in our build environement. We use DMAKE in our build environment (this unfortunately is non negotiable, therefore using MSBUILD is not permitted ...
6
votes
11answers
7k views

Circular file references not allowed

I am having a problem in building my solution in VS2008. Normally, it compiles fine in the environment. Sometimes, it fails with: /xxx_WEB/secure/CMSManagedTargetPage.aspx(1): error ASPPARSE: ...
5
votes
3answers
4k views

ASPNETCOMPILER error ASPCONFIG: Could not load file or assembly 'Microsoft.VisualBasic.Activities.Compiler' or one of its dependencies

I just upgraded my project to Asp.Net 4, from 3.5. When the build kicks off from TeamCity, I get the following error: [Project "Website.metaproj" (Rebuild target(s)):] ...
3
votes
1answer
380 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) ...
3
votes
4answers
803 views

aspnet_compiler looking for jsharp code provider on a C# mvc2 application

I'm compiling an MVC2 application in Visual Studio 2010 on Windows 7 64-bit. I am running the following as a post-build event command: aspnet_compiler.exe -v / -p \ It results in the following ...
3
votes
2answers
2k views

Trying to Build and Publish Asp.net website from command line using aspnet_compiler

I am trying this. I have built asp.net website. When I publish to IIS through VS2008 it works fine. Lets say my site is at c:\projects\Website1\ I want to publish it to c:\Inetpub\wwwroot\WebsiteOne ...
3
votes
1answer
235 views

How come the attributes for event handler properties on ASP.NET controls have a prefix (OnLoad for the Load event handler)

This is just for a better understanding of the ASP.NET framework. When you use a control in a declarative way (that would be web form markup), you assign event handlers by their method name using an ...
3
votes
1answer
3k views

Unable to publish using msbuild or aspnet_compiler using cc.net

I am trying to automate publishing a project having many solutions in cc.net. I am using msbuild which in turn calls a aspnetcompiler xml file. Problem is my directory contains many solutions and when ...
2
votes
0answers
57 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 ...
2
votes
1answer
153 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 ...
2
votes
1answer
215 views

Precompilation for Deployment

After exploring Precompilation for Deployment topic I want to enhance my build process. Now, what I do is: prepare web site using Web One Click Publish, for instance to c:\www\app directory, and ...
2
votes
1answer
155 views

How to return all aspnet_compiler errors (not just those in first directory)

Is there a way to get the aspnet_compiler to go through all views and return all errors, rather than just the errors in the current view directory? For example, lets say I have a project that has a ...
2
votes
1answer
276 views

Force a tool version with MSBuild from inside the file?

I've moved my project over to .NET 4.0 recently, and am having some trouble running the ASP.NET compiler inside of my build. This doesn't work because MSBuild by default uses an old tools version ...
2
votes
3answers
253 views

What is the advantage of the ASP.NET precompilation?

How useful is tu use Aspnet_compiler.exe instead of conventional Publish via Visual Studio? And what about resource (resx) files?
2
votes
2answers
715 views

Precompiling asp.net solutions for deployment

I'm using aspnet_compiler.exe to precompile my application for deployment. However, I don't think it's working, for two reasons: I see my applications assemblies under ...
2
votes
2answers
1k views

aspnet_compiler fails when using App_Browsers folder with Web Deployment Project

When Compiling my Web Deployment Project which references a Asp.Net project with a App_Browsers folder I get the following compilation error: ...
1
vote
0answers
29 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 ...
1
vote
0answers
63 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
58 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
92 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 ...
1
vote
1answer
66 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 ...
1
vote
0answers
84 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 ...
1
vote
1answer
179 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
359 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 ...
1
vote
1answer
108 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
vote
1answer
313 views

Nant aspnet_compiler.exe release build

I have the following nant task: <!--Compiles the possible release candidate to be used for further testing and possible release --> <target name="createReleaseCandidateJob"> <xmlpoke ...
1
vote
2answers
356 views

Why Visual Studio doesn't adds AspNetCompiler settings in solution file for configurations different from standard (Release/Debug)?

I have 3 build configurations for my solution: Release, Debug, and Custom. Also I have WebSite (yes, not a WebApplication) project type. By default, when you create WebSite VisualStudio 2008 adds to ...
1
vote
1answer
2k views

System.Linq namespace missing even with reference to System.Core.Dll

When I open up a Asp Net web site of mine in Visual Studio 2010 the properties say "Target Framework 3.5", however when I try to using the Linq namespace the compiler complains about it. "The type or ...
1
vote
1answer
408 views

publishing a site in release mode using aspnet_compiler in batch file

i am trieng to create a batch task that will publish my site in release mode but with no luck... my script for doing so is this: aspnet_compiler -errorstack -nologo -fixednames -v / -p ...
1
vote
1answer
77 views

Move a web application to another server but use the same subfolder and domain

my web application is installed on a Server A like mywebsite.com/ --> GO to Server A mywebsite.com/myApp/ --> GO to Server A and for performance reasons I would like have /myApp/ on an another ...
1
vote
1answer
370 views

aspnet_compiler WebSite project

Can I compile a WebSite project(3.5) using utility aspnet_compiler from command line without installing IIS if I am using local web server for development? Thanks
1
vote
2answers
463 views

How to use aspnet_compiler

Afterlooking at this [post][1], I thought that I would give it a go. So, in my Post Build Event, I've put... C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v / -p "$(ProjectDir)\" ...
1
vote
1answer
1k views

How to specify a CompilerVersion for aspnet_compiler.exe without a web.config?

When you precompile a directory that doesn't contain a web.config, the aspnet_compiler.exe defaults to CompilerVersion 2.0 and 3.5 code fails to compile. Is the following minimal web.config the only ...
0
votes
1answer
37 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? ...
0
votes
0answers
25 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 ...
0
votes
1answer
44 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 ...
0
votes
1answer
45 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 ...
0
votes
2answers
121 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 ...
0
votes
3answers
198 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 ...
0
votes
1answer
189 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 ...
0
votes
1answer
123 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 ...
0
votes
0answers
82 views

ASPPARSE: Abstract method with non-zero RVA - error during compilation

I have web application. On my computer and many other machines it works correctly, however I have one box on which during compilation (aspnet_compiler.exe -v /VirtualDirectoryName) it throws this ...
0
votes
1answer
350 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 ...
0
votes
0answers
89 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
345 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 ...
0
votes
0answers
1k views

Why does my ASP.NET 4.0 web service fail with a compliation error with NetworkService but succeed with LocalSystem

I started getting server-side compliation errors indicating that the identity of my web service's application pool could not access files within a temporary ASP.NET folder. If I change the identity ...
0
votes
1answer
128 views

How do you handle excluded files with aspnet_compiler?

I'm trying to use aspnet_compiler to move a project that has already compiled from one location to another. I'm using Subversion for revision control. The process basically gets all the code out of ...

1 2