Remove msbuild usage from the build script
This commit is contained in:
parent
cd24c1a833
commit
73f0fd3049
1 changed files with 3 additions and 3 deletions
|
@ -36,9 +36,9 @@ Task("Prepare")
|
||||||
{
|
{
|
||||||
// Build tools
|
// Build tools
|
||||||
DotNetCoreRestore("Source/Tools/Tools.sln");
|
DotNetCoreRestore("Source/Tools/Tools.sln");
|
||||||
MSBuild("Source/Tools/Tools.sln", new MSBuildSettings {
|
DotNetCoreBuild("Source/Tools/Tools.sln", new DotNetCoreBuildSettings {
|
||||||
Verbosity = Verbosity.Minimal,
|
Verbosity = DotNetCoreVerbosity.Minimal,
|
||||||
Configuration = "Release",
|
Configuration = "Release"
|
||||||
});
|
});
|
||||||
|
|
||||||
// Generate code and prepare libs projects
|
// Generate code and prepare libs projects
|
||||||
|
|
Loading…
Reference in a new issue