以下主要想通过msbuild编译
#include <stdio.h>
int main (int argc, char *argv[])
{
char Buffer[2000];
printf("TEST");
gets(Buffer);
}
批处理文件调用msbuild:
C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild main.vcxproj
pause
msbuild项目文件如下。
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ItemGroup>
<ClCompile Include="main.c" />
</ItemGroup>
</Project>
到目前为止整个设置工作,但我需要找到一个很好的来源,以帮助我了解有关msproject文件的更多信息。 我想学习多种东西。我怎么能:
答案 0 :(得分:1)
有一本很棒的书,里面有很多示例代码,可以用来处理你所说的一切。
Inside the Microsoft® Build Engine: Using MSBuild and Team Foundation Build
以下是如何调用clean以及构建目标,并让它编译调试和发布配置。 C:\ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ msbuild main.vcxproj / t:clean; build / p:Configuration = Debug; release / p:platform = Win32
复制任务:
<ItemGroup>
<MySourceFiles Include="c:\MySourceTree\**\*.*"/>
</ItemGroup>
<Target Name="CopyFiles">
<Copy
SourceFiles="@(MySourceFiles)"
DestinationFiles="@(MySourceFiles->'c:\MyDestinationTree\%(RecursiveDir)% (Filename)%(Extension)')"
/>
此链接可能会帮助您解决其他一些问题。