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 subversion, does a build, then calls aspnet_compiler.
My problem comes into being when I've got an excluded ascx file. This file is part of the latest code, but the normal build compiler ignores it, so no trouble. Aspnet_compiler blows up, however, because it cannot find the code behind for that particular control.
I'm not sure if
- I'm doing this right;
- there's a way to just get the correct file tree from Subversion
- There's an easier way; or
- this is expected, and I need to delete excluded files every time.
I'd appreciate any help.
Tom
I was struggling for so long with this. But finally found an workaround
Hide folder -> compile -> show folder.
This is expected: Aspnet_compiler.exe compiles all files in the application and does not look at the project file. Thus, it does not have any notion of an excluded file.
Babak Naffas's suggestion of deleting the file is probably the easiest way of dealing with the file, rather than manually deleting it (or scripting its deletion) each time.
There is a very easy way to do it: set the hidden attribute to the folder to exclude, and
aspnet_compiler
will skip it.A typical case for this error is the
node_modules
folder created bynpm install
If you run
npm install
from a script, or from the command line, you can run theattrib
command, after runningnmp install
to hide the folder:If you run
npm install
from amsbuild
project, you can add anexec
task, like this:The exitcode for
attrib
command is always zero, at least in my tests, so it makes no sense to check it to determine if the command run successfully.In the previous
msbuild
example the folder to hide is"$(PackageJsonFolder)\node_modules"
because the propertyPackageJsonFolder
is the name of the folder wherepackages.json
file is, and thus wherenode_modules
will be created.For other cases you can always specify your folder relative to the project's location, like this:
and run the command using the same lime in the previous example.
Since .NET 4.5 or 4.5.1 (I am not sure which) there was a -x option added to aspnet_compiler.exe which allows you to exclude directories from compilation. You can find the option through command "aspnet_compiler /?".
Example:
There is a folder named "ToBeExcluded" in my website. I can use the following command to pre-compile the website and exclude that folder,