@@ -47,26 +47,26 @@ Task("Build")
47
47
. IsDependentOn ( "Clean" )
48
48
. IsDependentOn ( "Restore" )
49
49
. Does ( ( ) => {
50
+ var dir1 = buildDir . Combine ( "SelfHttpMatchmaker" ) ;
50
51
DotNetBuild ( "./src/Plugins/SelfHttpMatchmaker/SelfHttpMatchmaker.csproj" , new DotNetBuildSettings {
51
52
Configuration = configuration ,
52
53
NoRestore = true ,
53
- Runtime = runtime ,
54
- OutputDirectory = buildDir + "/SelfHttpMatchmaker" ,
54
+ OutputDirectory = dir1 ,
55
55
MSBuildSettings = msbuildSettings ,
56
56
} ) ;
57
57
58
+ var dir2 = buildDir . Combine ( "SelfHttpMatchmaker" ) ;
58
59
DotNetBuild ( "./src/Plugins/GameCodePlugin/GameCodePlugin.csproj" , new DotNetBuildSettings {
59
60
Configuration = configuration ,
60
61
NoRestore = true ,
61
- Runtime = runtime ,
62
- OutputDirectory = buildDir + "/GameCodePlugin" ,
62
+ OutputDirectory = dir2 ,
63
63
MSBuildSettings = msbuildSettings ,
64
64
} ) ;
65
65
66
66
if ( BuildSystem . GitHubActions . IsRunningOnGitHubActions ) {
67
- BuildSystem . GitHubActions . Commands . UploadArtifact ( buildDir + "/SelfHttpMatchmaker" , "SelfHttpMatchmaker" ) ;
67
+ BuildSystem . GitHubActions . Commands . UploadArtifact ( dir1 , "SelfHttpMatchmaker" ) ;
68
68
69
- BuildSystem . GitHubActions . Commands . UploadArtifact ( buildDir + "/GameCodePlugin" , "GameCodePlugin" ) ;
69
+ BuildSystem . GitHubActions . Commands . UploadArtifact ( dir2 , "GameCodePlugin" ) ;
70
70
}
71
71
} ) ;
72
72
0 commit comments