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