The name of the .sln file does not match the filesystem name because of the case: this prevents the build to succeed in Linux systems.
This commit is contained in:
Bruno Bossola 2018-10-05 18:47:07 +03:00 коммит произвёл Max Gortman
Родитель 4bd2621c69
Коммит 30a1aefba1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -66,7 +66,7 @@ Task("Compile")
.Does(() =>
{
int result = StartProcess("dotnet", new ProcessSettings { Arguments = "msbuild dotnetty.sln /p:Configuration=" + configuration } );
int result = StartProcess("dotnet", new ProcessSettings { Arguments = "msbuild DotNetty.sln /p:Configuration=" + configuration } );
if (result != 0)
{
throw new CakeException($"Compilation failed.");
@ -321,4 +321,4 @@ Task("Nightly")
///////////////////////////////////////////////////////////////
RunTarget(target);
RunTarget(target);