Skip to content

Commit be00f83

Browse files
committed
Add .NET 6
1 parent 43e2d8a commit be00f83

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

sandbox/dockerfiles/net_6/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"IsDefault": true,
1717
"Id": "default",
1818
"Name": ".NET 6.0",
19-
"CompileCmd": "{ cp /app/*.cs /project/ && dotnet publish -c Release -o /publish /project; } 1>/dev/null",
19+
"CompileCmd": "cp /app/*.cs /project/ && dotnet publish -c Release -o /publish /project -v quiet",
2020
"RunCmd": "dotnet /project/bin/Release/net6.0/project.dll",
2121
"ScriptOptions": {
2222
"SourceFile": "Program.cs"

sandbox/manager.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,6 @@ func (m *CodenireOrchestrator) Prepare() error {
110110
}
111111

112112
func (m *CodenireOrchestrator) Boot() (err error) {
113-
//err = m.dockerLogin()
114-
//if err != nil {
115-
// return err
116-
//}
117-
118113
pool := pond.NewPool(m.numSysWorkers)
119114
for idx, img := range m.imgs {
120115
pool.Submit(func() {

0 commit comments

Comments
 (0)