English 中文(简体)
MSBuild: Add additional files to compile without altering the project file
原标题:

After looking around I can t find a simple answer to this problem.

I am trying to create an MSBuild file to allow me to easily use SpecFlow and NUnit within Visual Studio 2010 express.

The file below is not complete this is just a proof of concept and it needs to be made more generic.

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

    <PropertyGroup>
        <BuildDependsOn>
            BuildSolution;          
            SpecFlow;
            BuildProject;           
            NUnit;
        </BuildDependsOn>
    </PropertyGroup>

    <PropertyGroup>
        <Solution>C:UsersCraigDocumentsMy DropboxCellsCells.sln</Solution>
        <CSProject>C:UsersCraigDocumentsMy DropboxCellsConfigurationConfiguration.csproj</CSProject>
        <DLL>C:UsersCraigDocumentsMy DropboxCellsConfigurationinDebugConfiguration.dll</DLL>
        <CSFile>C:UsersCraigDocumentsMy DropboxCellsConfigurationSpecFlowFeature1.feature.cs</CSFile>
    </PropertyGroup>

    <Target Name="Build" DependsOnTargets="$(BuildDependsOn)">
        <Message Text="Build Started" Importance="high" />
        <Message Text="Build Ended" Importance="high" />
    </Target>

    <Target Name="BuildSolution">
        <Message Text="BuildSolution Started" Importance="high" />
            <MSBuild Projects="$(Solution)" Properties="Configuration=Debug" />
        <Message Text="BuildSolution Ended" Importance="high" />
    </Target>

    <Target Name="SpecFlow">
        <Message Text="SpecFlow Started" Importance="high" />
            <Exec Command= SpecFlow generateall "$(CSProject)"  />
        <Message Text="SpecFlow Ended" Importance="high" />
    </Target>

    <Target Name="BuildProject">
        <Message Text="BuildProject Started" Importance="high" />
            <MSBuild Projects="$(CSProject)" Properties="Configuration=Debug" />
        <Message Text="BuildProject Ended" Importance="high" />
    </Target>

    <Target Name="NUnit">
        <Message Text="NUnit Started" Importance="high" />
            <Exec Command= NUnit /run "$(DLL)"  />
        <Message Text="NUnit Ended" Importance="high" />
    </Target>
</Project>

The SpecFlow Task looks in the .csproj file and creates a SpecFlowFeature1.feature.cs. I need to include this file when building the .csproj so that NUnit can use it.

I know I could modify (either directly or on a copy) the .csproj file to include the generated file but I d prefer to avoid this.

My question is: Is there a way to use the MSBuild Task to build the project file and tell it to include an additional file to include in the build?

Thank you.

问题回答

I found no way of doing it without editing the project file.

So I made an MSBuild file to:

  • Copy the project files
  • Run the copies through SpecFlow
  • Add the new .cs files to the copied projects
  • Compile the projects
  • Debug Run each of the compiled DLLs through NUnit
  • Clean up - Delete the copied projects

I ve blogged about how to use it here:

http://learntdd.wordpress.com/2010/06/10/using-specflow-and-nunit-on-visual-studio-2010-express/

(It s version 1, I d like to improve the script)

I couldn t think of any way to achieve without any modification to the .csproj file.

The approach I d suggest would look like this.

In your .csproj you Import a container target file

...
<Import Project="SpecFlow.target" />
<Import Project="$(MSBuildToolsPath)Microsoft.CSharp.targets" />
...

just above the CSharp.targets.

Specflow.targets would look like this

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup>
        <Compile Include="@(Compile)" />
    </ItemGroup>
</Project>

so it doesn t harm while building the project from VS.

You could then use the Output of your SpecFlow Exec and add it to the SpecFlow.targets file

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup>
        <Compile Include="@(Compile)" />
        <Compile Include="SpecFlowFeature1.feature.cs" />
    </ItemGroup>
</Project>

...

and clean SpecFlow.targets after building your .csproj.





相关问题
How can I overwrite file web.config with web.other.config?

I have a msbuild script with custom logic to deploy my service to the qa server automatically. I have to overwrite the default config with a dedicated one, but when I use <Copy SourceFiles="web....

How do I use MSBuild on a C# project with no compilable code

I have a C# web app project which actually has no ASP.Net or C# in it. It s just a single html page with some Javascript, CSS, and a couple of images. I want to use MSBuild to deploy a version of ...

您能否防止MSBuild.exe经营活动?

我用文字建造一些项目,偶尔利用习俗制造事件,给建筑系统造成了很大困难。 如果有可能,我想援引MSBuild.exe。

building .net applications without Visual Studio

I m interested to hear about people working with building .net applications using MSBuild, NAnt or similar tools. What are you using, why are you using it instead of the VS IDE? I like to use ...

How long does my Visual Studio C# compile take?

It seems like it should be possible to configure Visual Studio to print out how long the compile takes. Perhaps somewhere in the .sln file. If the sln is compiled from the command line using ...

热门标签