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
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.
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 /?".
-x The virtual path of a directory that should be excluded from precompilation.
This switch can be used multiple times.
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,
aspnet_compiler -v /foo -p "C:\MyWebsite" -x ToBeExcluded "c:\temp\web"
I was struggling for so long with this. But finally found an workaround
attrib +h folderToExclude & runAspComplierWithAllOptions & attrib -h folderToExclude
Hide folder -> compile -> show folder.
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 by npm install
If you run npm install
from a script, or from the command line, you can run the attrib
command, after running nmp install
to hide the folder:
attrib +H node_modules
If you run npm install
from a msbuild
project, you can add an exec
task, like this:
<PropertyGroup>
<HideFolder>attrib +H "$(PackageJsonFolder)\node_modules"</HideFolder>
</PropertyGroup>
<!-- next line is for debugging, remove it when finished -->
<Warning Text="Hide node_modules command: '$(HideFolder)'"/>
<Exec Command="$(HideFolder)">
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 property PackageJsonFolder
is the name of the folder where packages.json
file is, and thus where node_modules
will be created.
For other cases you can always specify your folder relative to the project's location, like this:
<HideFolder>attrib +H "$(MSBuildProjectDirectory)\folder\to\hide"</HideFolder>
and run the command using the same lime in the previous example.