我下载了一个开源的c#项目,想学习一下。
源码的根目录下只有一个.build文件,内容格式是XML的。
 <description>C# Email Server build file</description>
    
    <!--
       | Properties/Setup Targets
     -->
    
    <!-- 
       | The Root for the build directory.  The release type
       | (debug/release) will be appended to create a the build.dir
       | property.
     -->
    <property name="build.root.dir" value="build" />
    
    <!-- Version -->
    <property name="build.version" value="0.3" />
    
    <!-- 
       | Initializes the properties.  Defaults to DEBUG
       | unless the release target was already called
     -->
    <target name="init">
        <property name="initialized" value="false" />
        <if propertyexists="project.config">
            <property name="initialized" value="true" />
        </if>
        <call target="init.debug" unless="${initialized}" />
        
        <echo message="Building a ${project.config} build." />
        
        <property name="build.dir" value="${build.root.dir}/${project.config}" />        
    </target>
....其它目录下,只有CS文件,没有sln或者csproj文件。这个如何用vs2008打开?谢谢