From 7164624043374bb65a06a21e2eb952f5df7dce64 Mon Sep 17 00:00:00 2001 From: Patrick Magee Date: Sat, 23 Nov 2024 14:44:51 +0000 Subject: [PATCH] fix after moving to slnx, waiting for dotnet cli fix --- dagger/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dagger/main.go b/dagger/main.go index a42aae6..67cba00 100644 --- a/dagger/main.go +++ b/dagger/main.go @@ -50,7 +50,8 @@ func (m *Dota2Helper) Build( WithDirectory("/repo", git, opts). WithWorkdir("/repo/src"). WithMountedCache("/root/.nuget/packages", cache). - WithExec([]string{"dotnet", "build"}). + // https://github.com/dotnet/sdk/issues/40913 + WithExec([]string{"dotnet", "build", "Dota2Helper"}). Stdout(ctx) }