1dotnet msbuild command - .NET Core C.LNIEd(To1t)Cnoertemsbuild command - .NET Core CLI(1)
2
3
4
7 dotnet msbuild - Builds a project and all of its dependencies.
8
10 dotnet msbuild <msbuild_arguments> [-h]
11
13 The dotnet msbuild command allows access to a fully functional MSBuild.
14
15 The command has the exact same capabilities as existing MSBuild com‐
16 mand-line client. The options are all the same. For more information
17 about the available options, see the MSBuild Command-Line Reference.
18
20 Build a project and its dependencies:
21
22 dotnet msbuild
23
24 Build a project and its dependencies using Release configuration:
25
26 dotnet msbuild /p:Configuration=Release
27
28 Run the publish target and publish for the osx.10.11-x64 RID:
29
30 dotnet msbuild /t:Publish /p:RuntimeIdentifiers=osx.10.11-x64
31
32 See the whole project with all targets included by the SDK:
33
34 dotnet msbuild /pp
35
37 mairaw.
38
39
40
41 dotnet msbuild command - .NET Core CLI(1)