5
嗯,問題是我沒有安裝Visual Studio,我不想安裝它,所以我製作了一個批處理文件,它可以編譯我的.csproj文件和我的所有源文件。如何在我的.csproj文件中包含DLL?
問題是我不知道如何包含.dll文件。這是我目前我的.csproj文件中的代碼:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyName>Project</AssemblyName>
<OutputPath>Bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<!-- .cs files -->
<Compile Include="program.cs" />
</ItemGroup>
<Target Name="Build">
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" />
<Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" />
</Target>
</Project>
什麼我需要改變,以包括/引用dll文件到編譯過程?