-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
Description
Hello!
I'm following your Pluralsight course, and trying to follow with Linker at the same time
But now i assume the project structure is a bit different?
I get the following error, so it still seems to reference the past project files?
Build FAILED.
"D:\Development\Linker\src\Linker.sln" (Build target) (1) ->
(Build target) ->
D:\Development\Linker\src\Linker.sln.metaproj : error MSB3202: The project file "D:\Development\Linker\src\Web\Web.csproj" was not found. [D:\Development\Linker\src\Linker.sln]
D:\Development\Linker\src\Linker.sln.metaproj : error MSB3202: The project file "D:\Development\Linker\src\Tests\Tests.csproj" was not found. [D:\Development\Linker\src\Linker.sln]
D:\Development\Linker\src\Linker.sln.metaproj : error MSB3202: The project file "D:\Development\Linker\src\Model\Model.csproj" was not found. [D:\Development\Linker\src\Linker.sln]
when running the following build.cake
Task("Build")
.Does(() =>
{
DotNetBuild("src/Linker.sln", settings => settings.SetConfiguration("Debug")
.WithTarget("Build"));
});
RunTarget("Build");