├── .gitignore ├── 10.0 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ ├── msbuild-exec-task │ │ │ └── Program.cs │ │ ├── hw_framework_config │ │ │ └── Program.cs │ │ └── rm-tmp-dotnet │ │ │ └── .s2i │ │ │ └── bin │ │ │ └── assemble │ ├── s2i │ │ └── bin │ │ │ ├── save-artifacts │ │ │ └── run │ └── root │ │ └── usr │ │ └── bin │ │ └── fix-permissions ├── runtime │ ├── default-cmd.sh │ ├── .gitignore │ └── test │ │ └── console-hello-world │ │ ├── .gitignore │ │ ├── Program.cs │ │ ├── app.tar.gz │ │ ├── build-project.sh │ │ └── console-hello-world.csproj └── aspnet │ ├── .gitignore │ └── test │ └── aspnet-hello-world │ ├── .gitignore │ ├── app.tar.gz │ ├── build-project.sh │ └── aspnet-hello-world.csproj ├── 3.1 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── devmode │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── devmode-src │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── app.csproj │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ └── hw_framework_config │ │ │ └── Program.cs │ ├── cccp.yml │ └── s2i │ │ └── bin │ │ └── save-artifacts └── runtime │ ├── .gitignore │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ ├── contrib │ └── etc │ │ ├── scl_enable_dotnet │ │ └── scl_enable │ ├── s2i │ └── bin │ │ └── run │ ├── cccp.yml │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 5.0 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── devmode │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── devmode-src │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── app.csproj │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ └── hw_framework_config │ │ │ └── Program.cs │ ├── cccp.yml │ └── s2i │ │ └── bin │ │ └── save-artifacts └── runtime │ ├── .gitignore │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ ├── contrib │ └── etc │ │ ├── scl_enable_dotnet │ │ └── scl_enable │ ├── s2i │ └── bin │ │ └── run │ ├── cccp.yml │ ├── root │ └── usr │ │ └── bin │ │ └── fix-permissions │ └── default-cmd.sh ├── 6.0 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ ├── msbuild-exec-task │ │ │ └── Program.cs │ │ ├── hw_framework_config │ │ │ └── Program.cs │ │ └── rm-tmp-dotnet │ │ │ └── .s2i │ │ │ └── bin │ │ │ └── assemble │ └── s2i │ │ └── bin │ │ ├── save-artifacts │ │ └── run └── runtime │ ├── default-cmd.sh │ ├── .gitignore │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app-s390x.tar.gz │ │ ├── app-x86_64.tar.gz │ │ ├── app-aarch64.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ ├── contrib │ └── etc │ │ ├── scl_enable_dotnet │ │ └── scl_enable │ ├── s2i │ └── bin │ │ └── run │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 7.0 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ ├── msbuild-exec-task │ │ │ └── Program.cs │ │ ├── hw_framework_config │ │ │ └── Program.cs │ │ └── rm-tmp-dotnet │ │ │ └── .s2i │ │ │ └── bin │ │ │ └── assemble │ └── s2i │ │ └── bin │ │ ├── save-artifacts │ │ └── run └── runtime │ ├── default-cmd.sh │ ├── .gitignore │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app-s390x.tar.gz │ │ ├── app-x86_64.tar.gz │ │ ├── app-aarch64.tar.gz │ │ ├── app-ppc64le.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ ├── s2i │ └── bin │ │ └── run │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 8.0 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ ├── msbuild-exec-task │ │ │ └── Program.cs │ │ ├── hw_framework_config │ │ │ └── Program.cs │ │ └── rm-tmp-dotnet │ │ │ └── .s2i │ │ │ └── bin │ │ │ └── assemble │ └── s2i │ │ └── bin │ │ ├── save-artifacts │ │ └── run └── runtime │ ├── default-cmd.sh │ ├── .gitignore │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ ├── s2i │ └── bin │ │ └── run │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 9.0 ├── build │ ├── .gitignore │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ ├── msbuild-exec-task │ │ │ └── Program.cs │ │ ├── hw_framework_config │ │ │ └── Program.cs │ │ └── rm-tmp-dotnet │ │ │ └── .s2i │ │ │ └── bin │ │ │ └── assemble │ ├── contrib │ │ └── etc │ │ │ └── trust_ssl_dirs │ └── s2i │ │ └── bin │ │ ├── save-artifacts │ │ └── run └── runtime │ ├── default-cmd.sh │ ├── .gitignore │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 2.1 ├── build │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── devmode │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── devmode-src │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── app.csproj │ │ ├── aspnetcoreimplicitversion │ │ │ ├── Program.cs │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── app.csproj │ │ ├── sdkversion │ │ │ ├── dummy.csproj │ │ │ └── .s2i │ │ │ │ └── bin │ │ │ │ └── assemble │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ └── hw_framework_config │ │ │ └── Program.cs │ ├── cccp.yml │ ├── s2i │ │ └── bin │ │ │ └── save-artifacts │ ├── content_sets.yml.rhel8 │ └── content_sets.yml.rhel7 └── runtime │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ └── build-project.sh │ ├── contrib │ └── etc │ │ ├── scl_enable_dotnet │ │ └── scl_enable │ ├── s2i │ └── bin │ │ └── run │ ├── cccp.yml │ ├── content_sets.yml.rhel8 │ ├── content_sets.yml.rhel7 │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 2.2 ├── build │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── devmode │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── devmode-src │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── app.csproj │ │ ├── aspnetcoreimplicitversion │ │ │ ├── Program.cs │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── app.csproj │ │ ├── sdkversion │ │ │ ├── dummy.csproj │ │ │ └── .s2i │ │ │ │ └── bin │ │ │ │ └── assemble │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ └── hw_framework_config │ │ │ └── Program.cs │ ├── cccp.yml │ ├── s2i │ │ └── bin │ │ │ └── save-artifacts │ └── content_sets.yml └── runtime │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ └── build-project.sh │ ├── s2i │ └── bin │ │ └── run │ ├── cccp.yml │ ├── contrib │ └── etc │ │ └── scl_enable │ ├── content_sets.yml │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 3.0 ├── build │ ├── test │ │ ├── asp-net-hello-world-envvar │ │ │ ├── .hiddenfile │ │ │ ├── .hiddenfolder │ │ │ │ └── .hiddenfile │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ └── test │ │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── devmode │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── devmode-src │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── app.csproj │ │ ├── precompiled │ │ │ ├── console.dll │ │ │ ├── console.pdb │ │ │ ├── world2 │ │ │ │ ├── console.dll │ │ │ │ ├── console.pdb │ │ │ │ └── console.runtimeconfig.json │ │ │ └── console.runtimeconfig.json │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── certificatecount │ │ │ └── console.csproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ └── hw_framework_config │ │ │ └── Program.cs │ ├── cccp.yml │ ├── s2i │ │ └── bin │ │ │ └── save-artifacts │ ├── content_sets.yml.rhel8 │ └── content_sets.yml └── runtime │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ ├── build-project.sh │ │ └── aspnet-hello-world.csproj │ ├── s2i │ └── bin │ │ └── run │ ├── cccp.yml │ ├── contrib │ └── etc │ │ └── scl_enable │ ├── content_sets.yml.rhel8 │ ├── content_sets.yml │ └── root │ └── usr │ └── bin │ └── fix-permissions ├── 1.0 ├── test │ ├── asp-net-hello-world │ │ └── wwwroot │ │ │ └── TextFile.txt │ ├── newweb │ │ ├── .s2i │ │ │ ├── environment │ │ │ └── bin │ │ │ │ └── assemble │ │ └── placeholder │ ├── asp-net-hello-world-envvar │ │ ├── src │ │ │ ├── app │ │ │ │ └── wwwroot │ │ │ │ │ └── TextFile.txt │ │ │ └── lib │ │ │ │ ├── Library.cs │ │ │ │ └── project.json │ │ ├── global.json │ │ ├── test │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ └── .s2i │ │ │ └── environment │ ├── qotd │ │ └── appsettings.json │ ├── dotnet-configuration-debug │ │ ├── .s2i │ │ │ └── environment │ │ └── Program.cs │ ├── dotnet-configuration-release │ │ ├── .s2i │ │ │ └── environment │ │ └── Program.cs │ ├── helloworld │ │ ├── Program.cs │ │ └── project.json │ └── hw_framework_config │ │ └── Program.cs ├── contrib │ └── etc │ │ └── scl_enable ├── content_sets.yml └── root │ └── usr │ └── bin │ └── fix-permissions ├── 1.1 ├── test │ ├── asp-net-hello-world │ │ └── wwwroot │ │ │ └── TextFile.txt │ ├── newweb │ │ ├── .s2i │ │ │ ├── environment │ │ │ └── bin │ │ │ │ └── assemble │ │ └── placeholder │ ├── asp-net-hello-world-envvar │ │ ├── src │ │ │ ├── app │ │ │ │ └── wwwroot │ │ │ │ │ └── TextFile.txt │ │ │ └── lib │ │ │ │ ├── Library.cs │ │ │ │ └── project.json │ │ ├── global.json │ │ ├── test │ │ │ ├── test1 │ │ │ │ └── Tests.cs │ │ │ └── test2 │ │ │ │ └── Tests.cs │ │ └── .s2i │ │ │ └── environment │ ├── qotd │ │ └── appsettings.json │ ├── dotnet-configuration-debug │ │ ├── .s2i │ │ │ └── environment │ │ └── Program.cs │ ├── dotnet-configuration-release │ │ ├── .s2i │ │ │ └── environment │ │ └── Program.cs │ ├── helloworld │ │ ├── Program.cs │ │ └── project.json │ └── hw_framework_config │ │ └── Program.cs ├── contrib │ └── etc │ │ └── scl_enable ├── content_sets.yml └── root │ └── usr │ └── bin │ └── fix-permissions ├── 2.0 ├── build │ ├── test │ │ ├── split_build │ │ │ └── .gitignore │ │ ├── startup_project_not_found │ │ │ ├── proj1 │ │ │ │ └── proj1.csproj │ │ │ └── proj2 │ │ │ │ └── proj2.fsproj │ │ ├── asp-net-hello-world │ │ │ └── wwwroot │ │ │ │ └── TextFile.txt │ │ ├── asp-net-hello-world-envvar │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── asp-net-hello-world-envvar2 │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── TextFile.txt │ │ │ │ └── lib │ │ │ │ │ ├── Library.cs │ │ │ │ │ └── lib.csproj │ │ │ ├── test │ │ │ │ ├── test1 │ │ │ │ │ └── Tests.cs │ │ │ │ └── test2 │ │ │ │ │ └── Tests.cs │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── qotd │ │ │ └── appsettings.json │ │ ├── devmode │ │ │ └── .s2i │ │ │ │ └── environment │ │ ├── dotnet-configuration-debug │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── dotnet-configuration-release │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ ├── helloworld.csproj │ │ │ └── Program.cs │ │ ├── devmode-src │ │ │ ├── .s2i │ │ │ │ └── environment │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── app.csproj │ │ ├── helloworld-fs │ │ │ ├── Program.fs │ │ │ └── helloworld.fsproj │ │ ├── helloworld-vb │ │ │ ├── Program.vb │ │ │ └── helloworld.vbproj │ │ ├── newtemplate │ │ │ ├── .s2i │ │ │ │ └── bin │ │ │ │ │ └── assemble │ │ │ └── placeholder │ │ ├── helloworld │ │ │ ├── Program.cs │ │ │ └── helloworld.csproj │ │ ├── hw_framework_config │ │ │ └── Program.cs │ │ └── sdkversion │ │ │ └── .s2i │ │ │ └── bin │ │ │ └── assemble │ ├── cccp.yml │ └── content_sets.yml └── runtime │ ├── test │ └── aspnet-hello-world │ │ ├── .gitignore │ │ ├── app.tar.gz │ │ └── build-project.sh │ ├── cccp.yml │ ├── contrib │ └── etc │ │ └── scl_enable │ ├── default-cmd.sh │ ├── content_sets.yml │ └── root │ └── usr │ └── bin │ └── fix-permissions └── .github └── dependabot.yml /.gitignore: -------------------------------------------------------------------------------- 1 | project.lock.json 2 | .bin/ 3 | -------------------------------------------------------------------------------- /10.0/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /3.1/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /5.0/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /6.0/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /7.0/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /8.0/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /9.0/build/.gitignore: -------------------------------------------------------------------------------- 1 | test/split_build 2 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /1.0/test/newweb/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_NPM_TOOLS=bower gulp -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /1.1/test/newweb/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_NPM_TOOLS=bower gulp -------------------------------------------------------------------------------- /10.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.0/build/test/split_build/.gitignore: -------------------------------------------------------------------------------- 1 | app.tar.gz 2 | Dockerfile -------------------------------------------------------------------------------- /2.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.1/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.1/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.2/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.2/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9.0/build/test/startup_project_not_found/proj1/proj1.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9.0/build/test/startup_project_not_found/proj2/proj2.fsproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /10.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec /bin/bash "$@" -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /6.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec /bin/bash "$@" -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /7.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec /bin/bash "$@" -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /8.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec /bin/bash "$@" -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/.hiddenfolder/.hiddenfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /9.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec /bin/bash "$@" -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /1.0/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /1.1/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /10.0/aspnet/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /10.0/aspnet/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /10.0/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /2.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /2.1/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /2.2/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /3.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /3.1/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /3.1/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /5.0/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /5.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /6.0/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /6.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /7.0/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /8.0/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /8.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /9.0/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | test/dockerfile-run-dotnet/ 2 | test/precompiled/ 3 | -------------------------------------------------------------------------------- /9.0/runtime/test/aspnet-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /1.0/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | -------------------------------------------------------------------------------- /1.1/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /10.0/runtime/test/console-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.1/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /2.2/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /3.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /3.1/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /5.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /6.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /7.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /8.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /9.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src" ] 3 | } -------------------------------------------------------------------------------- /1.0/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src" ] 3 | } -------------------------------------------------------------------------------- /1.1/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar2/src/app/wwwroot/TextFile.txt: -------------------------------------------------------------------------------- 1 | A text file. -------------------------------------------------------------------------------- /10.0/build/test/qotd/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "quotesFile": "quotes.txt" 3 | } 4 | -------------------------------------------------------------------------------- /10.0/runtime/test/console-hello-world/Program.cs: -------------------------------------------------------------------------------- 1 | System.Console.WriteLine("Hello World!"); -------------------------------------------------------------------------------- /2.0/build/test/devmode/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /2.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | -------------------------------------------------------------------------------- /2.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /2.1/build/test/devmode/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /2.1/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /2.2/build/test/devmode/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /2.2/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /3.0/build/test/devmode/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /3.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /3.1/build/test/devmode/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /3.1/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /5.0/build/test/devmode/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /5.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /6.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /7.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /8.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /9.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /10.0/build/test/dotnet-configuration-release/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Release 2 | -------------------------------------------------------------------------------- /2.0/build/test/devmode-src/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /2.1/build/test/devmode-src/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /2.2/build/test/devmode-src/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /3.0/build/test/devmode-src/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /3.1/build/test/devmode-src/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /5.0/build/test/devmode-src/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DEV_MODE=true 3 | -------------------------------------------------------------------------------- /2.1/build/test/aspnetcoreimplicitversion/Program.cs: -------------------------------------------------------------------------------- 1 | class Program 2 | { 3 | public static void Main() 4 | {} 5 | } -------------------------------------------------------------------------------- /2.1/build/test/sdkversion/dummy.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.2/build/test/aspnetcoreimplicitversion/Program.cs: -------------------------------------------------------------------------------- 1 | class Program 2 | { 3 | public static void Main() 4 | {} 5 | } -------------------------------------------------------------------------------- /2.2/build/test/sdkversion/dummy.csproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.1/runtime/contrib/etc/scl_enable_dotnet: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | 3 | source ${CONTAINER_SCRIPTS_PATH}/etc/scl_enable 4 | exec dotnet "$@" 5 | -------------------------------------------------------------------------------- /3.1/runtime/contrib/etc/scl_enable_dotnet: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | 3 | source ${CONTAINER_SCRIPTS_PATH}/etc/scl_enable 4 | exec dotnet "$@" 5 | -------------------------------------------------------------------------------- /5.0/runtime/contrib/etc/scl_enable_dotnet: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | 3 | source ${CONTAINER_SCRIPTS_PATH}/etc/scl_enable 4 | exec dotnet "$@" 5 | -------------------------------------------------------------------------------- /6.0/runtime/contrib/etc/scl_enable_dotnet: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | 3 | source ${CONTAINER_SCRIPTS_PATH}/etc/scl_enable 4 | exec dotnet "$@" 5 | -------------------------------------------------------------------------------- /2.1/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.1/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /2.1/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.1/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /2.2/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.2/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /2.2/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.2/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /3.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /3.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /3.1/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.1/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /3.1/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.1/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /5.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/5.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /5.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/5.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /6.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /6.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /7.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /7.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /8.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/8.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /8.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/8.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /9.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/9.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /9.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/9.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /10.0/build/test/precompiled/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/10.0/build/test/precompiled/console.dll -------------------------------------------------------------------------------- /10.0/build/test/precompiled/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/10.0/build/test/precompiled/console.pdb -------------------------------------------------------------------------------- /2.0/build/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-20-centos7 4 | -------------------------------------------------------------------------------- /2.1/build/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-21-centos7 4 | -------------------------------------------------------------------------------- /2.2/build/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-22-centos7 4 | -------------------------------------------------------------------------------- /3.0/build/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-30-centos7 4 | -------------------------------------------------------------------------------- /3.1/build/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-31-centos7 4 | -------------------------------------------------------------------------------- /5.0/build/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-50-centos7 4 | -------------------------------------------------------------------------------- /2.1/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /2.2/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /3.0/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /3.1/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /5.0/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /6.0/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /7.0/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | cd $DOTNET_APP_PATH 5 | 6 | echo "---> Running application ..." 7 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /10.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /2.0/runtime/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-20-runtime-centos7 4 | -------------------------------------------------------------------------------- /2.1/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /2.1/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.1/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /2.1/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.1/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /2.1/runtime/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-21-runtime-centos7 4 | -------------------------------------------------------------------------------- /2.2/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /2.2/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.2/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /2.2/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.2/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /2.2/runtime/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-22-runtime-centos7 4 | -------------------------------------------------------------------------------- /3.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /3.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /3.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /3.0/runtime/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-30-runtime-centos7 4 | -------------------------------------------------------------------------------- /3.1/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /3.1/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.1/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /3.1/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.1/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /3.1/runtime/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-31-runtime-centos7 4 | -------------------------------------------------------------------------------- /5.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /5.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/5.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /5.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/5.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /5.0/runtime/cccp.yml: -------------------------------------------------------------------------------- 1 | # This is for the purpose of building this container 2 | # on the centos container pipeline. 3 | job-id: dotnet-50-runtime-centos7 4 | -------------------------------------------------------------------------------- /6.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /6.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /6.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /7.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /7.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /7.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /8.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /8.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/8.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /8.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/8.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /9.0/build/test/dotnet-configuration-debug/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_CONFIGURATION=Debug 2 | DOTNET_VERBOSITY=detailed 3 | DOTNET_RESTORE_DISABLE_PARALLEL=true -------------------------------------------------------------------------------- /9.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/9.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /9.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/9.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /10.0/aspnet/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/10.0/aspnet/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /10.0/build/test/precompiled/world2/console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/10.0/build/test/precompiled/world2/console.dll -------------------------------------------------------------------------------- /10.0/build/test/precompiled/world2/console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/10.0/build/test/precompiled/world2/console.pdb -------------------------------------------------------------------------------- /10.0/runtime/test/console-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/10.0/runtime/test/console-hello-world/app.tar.gz -------------------------------------------------------------------------------- /2.0/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.0/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /2.1/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.1/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /2.2/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/2.2/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /3.0/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.0/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /3.1/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/3.1/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /5.0/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/5.0/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /8.0/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/8.0/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /9.0/runtime/test/aspnet-hello-world/app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/9.0/runtime/test/aspnet-hello-world/app.tar.gz -------------------------------------------------------------------------------- /6.0/runtime/test/aspnet-hello-world/app-s390x.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/runtime/test/aspnet-hello-world/app-s390x.tar.gz -------------------------------------------------------------------------------- /6.0/runtime/test/aspnet-hello-world/app-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/runtime/test/aspnet-hello-world/app-x86_64.tar.gz -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/app-s390x.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/runtime/test/aspnet-hello-world/app-s390x.tar.gz -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/app-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/runtime/test/aspnet-hello-world/app-x86_64.tar.gz -------------------------------------------------------------------------------- /1.0/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /1.1/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /6.0/runtime/test/aspnet-hello-world/app-aarch64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/6.0/runtime/test/aspnet-hello-world/app-aarch64.tar.gz -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/app-aarch64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/runtime/test/aspnet-hello-world/app-aarch64.tar.gz -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/app-ppc64le.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/HEAD/7.0/runtime/test/aspnet-hello-world/app-ppc64le.tar.gz -------------------------------------------------------------------------------- /2.0/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /2.1/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /2.2/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /3.0/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /3.1/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /5.0/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /6.0/runtime/contrib/etc/scl_enable: -------------------------------------------------------------------------------- 1 | # This will make scl collection binaries work out of box. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | source scl_source enable ${ENABLED_COLLECTIONS} 4 | -------------------------------------------------------------------------------- /5.0/build/test/devmode-src/src/app/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net5.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /5.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net5.0 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/net5.0/publish . -------------------------------------------------------------------------------- /10.0/aspnet/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net10.0 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/net10.0/publish . 8 | -------------------------------------------------------------------------------- /10.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /10.0/runtime/test/console-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net10.0 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/net10.0/publish . 8 | -------------------------------------------------------------------------------- /2.1/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /2.2/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /3.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /3.1/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /5.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /6.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /7.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /8.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /8.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net8.0 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/net8.0/publish . 8 | -------------------------------------------------------------------------------- /9.0/build/contrib/etc/trust_ssl_dirs: -------------------------------------------------------------------------------- 1 | if [ -n "$DOTNET_SSL_DIRS" ]; then 2 | 3 | echo "error: DOTNET_SSL_DIRS is no longer supported. Certificates can be trusted using SSL_CERT_DIR." 4 | 5 | fi 6 | -------------------------------------------------------------------------------- /9.0/build/s2i/bin/save-artifacts: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -d /opt/app-root/packages-for-incremental-build ]; then 5 | cd /opt/app-root 6 | tar cf - packages-for-incremental-build 7 | fi -------------------------------------------------------------------------------- /9.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net9.0 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/net9.0/publish . 8 | -------------------------------------------------------------------------------- /3.0/build/test/devmode-src/src/app/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp3.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /3.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f netcoreapp3.0 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/netcoreapp3.0/publish . -------------------------------------------------------------------------------- /3.1/build/test/devmode-src/src/app/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp3.1 4 | 5 | 6 | -------------------------------------------------------------------------------- /3.1/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f netcoreapp3.1 -c Release 6 | 7 | tar -czvf app.tar.gz -C bin/Release/netcoreapp3.1/publish . -------------------------------------------------------------------------------- /1.0/test/newweb/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new -t web 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /1.1/test/newweb/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new -t web 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /10.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /10.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /2.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /2.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /2.1/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /2.1/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /2.2/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /2.2/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /3.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /3.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /3.1/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /3.1/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /5.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /5.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /6.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /6.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /6.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net6.0 -c Release 6 | 7 | tar -czvf app-$(uname -m).tar.gz -C bin/Release/net6.0/publish . 8 | -------------------------------------------------------------------------------- /7.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /7.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet publish -f net7.0 -c Release 6 | 7 | tar -czvf app-$(uname -m).tar.gz -C bin/Release/net7.0/publish . 8 | -------------------------------------------------------------------------------- /8.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /8.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /9.0/build/test/helloworld-fs/Program.fs: -------------------------------------------------------------------------------- 1 | // generated using 'dotnet new --language fsharp' 2 | open System 3 | 4 | [] 5 | let main (argv :string[]) = 6 | printfn "Hello World from F#!" 7 | 0 -------------------------------------------------------------------------------- /9.0/build/test/helloworld-vb/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Module Program 4 | Sub Main(args As String()) 5 | Console.WriteLine("Hello World from VB!") 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /5.0/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net5.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /6.0/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net6.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /7.0/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net7.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /8.0/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net8.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /9.0/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net9.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /10.0/aspnet/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net10.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /2.1/build/test/aspnetcoreimplicitversion/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # call base assemble script 4 | $STI_SCRIPTS_PATH/assemble >/dev/null 2>&1 5 | 6 | # print the resolved dependencies 7 | cat ~/app/*.deps.json -------------------------------------------------------------------------------- /2.2/build/test/aspnetcoreimplicitversion/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # call base assemble script 4 | $STI_SCRIPTS_PATH/assemble >/dev/null 2>&1 5 | 6 | # print the resolved dependencies 7 | cat ~/app/*.deps.json -------------------------------------------------------------------------------- /3.0/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp3.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /3.1/runtime/test/aspnet-hello-world/aspnet-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp3.1 4 | 5 | 6 | -------------------------------------------------------------------------------- /5.0/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | net5.0 5 | 6 | -------------------------------------------------------------------------------- /6.0/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | net6.0 5 | 6 | -------------------------------------------------------------------------------- /7.0/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | net7.0 5 | 6 | -------------------------------------------------------------------------------- /8.0/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | net8.0 5 | 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | version: 2 4 | updates: 5 | - package-ecosystem: github-actions 6 | directory: / 7 | schedule: 8 | interval: monthly 9 | labels: 10 | - 'ready for review' 11 | -------------------------------------------------------------------------------- /2.1/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | netcoreapp2.1 5 | 6 | -------------------------------------------------------------------------------- /2.1/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /2.2/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | netcoreapp2.2 5 | 6 | -------------------------------------------------------------------------------- /2.2/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.2", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.2.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /3.0/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | netcoreapp3.0 5 | 6 | -------------------------------------------------------------------------------- /3.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /3.1/build/test/certificatecount/console.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | netcoreapp3.1 5 | 6 | -------------------------------------------------------------------------------- /3.1/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /10.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /2.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /2.1/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /2.1/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /2.2/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /2.2/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.2", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.2.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /3.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /3.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /3.1/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /3.1/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /5.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /6.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /7.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /8.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /9.0/build/test/newtemplate/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the project 4 | pushd /tmp/src 5 | dotnet new $TEMPLATE --no-restore 6 | popd 7 | 8 | # call base assemble script 9 | $STI_SCRIPTS_PATH/assemble 10 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /10.0/runtime/test/console-hello-world/console-hello-world.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | net10.0 5 | 6 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.0/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.1/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /10.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net10.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /5.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /6.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /7.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /8.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar2/src/lib/Library.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ClassLibrary 4 | { 5 | public class Class1 6 | { 7 | public void Method1() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /9.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net9.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /1.0/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.0/test/newweb/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /1.1/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.1/test/newweb/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /10.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.1/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.1 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.1/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.2/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.2 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.2/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3.0/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3.1/build/test/helloworld-vb/helloworld.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.1 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3.1/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /5.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /5.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /6.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /6.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "6.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /7.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /7.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net7.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "7.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /8.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /8.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /8.0/runtime/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Trust certificates from DOTNET_SSL_DIRS. 5 | source /opt/app-root/etc/trust_ssl_dirs 6 | 7 | cd $DOTNET_APP_PATH 8 | 9 | echo "---> Running application ..." 10 | exec "./$DOTNET_DEFAULT_CMD" -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net9.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /9.0/build/test/helloworld/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /9.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net9.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "9.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /10.0/build/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -n "${DOTNET_INFO}" ]; then 5 | /usr/libexec/s2i/container-tool info 6 | fi 7 | 8 | cd $DOTNET_APP_PATH 9 | 10 | echo "---> Running application ..." 11 | exec "./$DOTNET_DEFAULT_CMD" 12 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net10.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net10.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /10.0/build/test/msbuild-exec-task/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /10.0/build/test/precompiled/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net10.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "10.0.0-preview.6.25358.103" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /6.0/build/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -n "${DOTNET_INFO}" ]; then 5 | /usr/libexec/s2i/container-tool info 6 | fi 7 | 8 | cd $DOTNET_APP_PATH 9 | 10 | echo "---> Running application ..." 11 | exec "./$DOTNET_DEFAULT_CMD" 12 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /6.0/build/test/msbuild-exec-task/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /7.0/build/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | if [ -n "${DOTNET_INFO}" ]; then 5 | /usr/libexec/s2i/container-tool info 6 | fi 7 | 8 | cd $DOTNET_APP_PATH 9 | 10 | echo "---> Running application ..." 11 | exec "./$DOTNET_DEFAULT_CMD" 12 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /7.0/build/test/msbuild-exec-task/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /8.0/build/test/msbuild-exec-task/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net9.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /9.0/build/test/msbuild-exec-task/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /10.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /2.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat < 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.1/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.1/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.2/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /2.2/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar2/src/lib/lib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | portable 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /3.1/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /3.1/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /5.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /5.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /5.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /6.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /6.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /6.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "6.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /7.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /7.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /7.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net7.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "7.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /8.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /8.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /8.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /9.0/build/test/hw_framework_config/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorldSample 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /9.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /9.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net9.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "9.0.0-preview.4.20251.6" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /10.0/build/test/newtemplate/placeholder: -------------------------------------------------------------------------------- 1 | This folder contains the 'new web template'. 2 | Instead of generating it once and storing it in the repo, we generate it in '.s2i/bin/assemble'. 3 | This ensures it is always up-to-date with the template provided by the sdk. 4 | -------------------------------------------------------------------------------- /10.0/build/test/precompiled/world2/console.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net10.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "10.0.0-preview.6.25358.103" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /2.0/build/test/sdkversion/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # call base assemble script, this will create a global.json 4 | $STI_SCRIPTS_PATH/assemble >/dev/null 2>&1 5 | 6 | # print the sdk version 7 | sdk_version=$(dotnet --version) 8 | echo "SDK Version: ${sdk_version}" 9 | -------------------------------------------------------------------------------- /2.1/build/test/sdkversion/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # call base assemble script, this will create a global.json 4 | $STI_SCRIPTS_PATH/assemble >/dev/null 2>&1 5 | 6 | # print the sdk version 7 | sdk_version=$(dotnet --version) 8 | echo "SDK Version: ${sdk_version}" 9 | -------------------------------------------------------------------------------- /2.2/build/test/sdkversion/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # call base assemble script, this will create a global.json 4 | $STI_SCRIPTS_PATH/assemble >/dev/null 2>&1 5 | 6 | # print the sdk version 7 | sdk_version=$(dotnet --version) 8 | echo "SDK Version: ${sdk_version}" 9 | -------------------------------------------------------------------------------- /5.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /6.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /7.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /8.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /9.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net9.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /10.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net10.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.1/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.2/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /3.0/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /3.1/build/test/helloworld/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /10.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net10.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /10.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net10.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /5.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /5.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /6.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /6.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /7.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /7.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /8.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /8.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /9.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net9.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /9.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net9.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.1/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.1/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.2/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2.2/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.0/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /3.0/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /3.1/build/test/dotnet-configuration-debug/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /3.1/build/test/dotnet-configuration-release/helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | portable 6 | Exe 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar2/test/test1/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar2/test/test2/Tests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xunit; 3 | 4 | namespace Tests 5 | { 6 | public class Tests 7 | { 8 | [Fact] 9 | public void Test1() 10 | { 11 | Assert.True(true); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1 test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_SOURCES=https://api.nuget.org/v3/index.json https://www.myget.org/F/s2i-dotnetcore 6 | DOTNET_PUBLISH=true 7 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1 test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_SOURCES=https://api.nuget.org/v3/index.json https://www.myget.org/F/s2i-dotnetcore 6 | DOTNET_PUBLISH=true 7 | -------------------------------------------------------------------------------- /10.0/build/test/rm-tmp-dotnet/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | # generate a project 6 | pushd /tmp/src 7 | dotnet new web --no-restore 8 | popd 9 | 10 | # ensure something exists at /tmp/.dotnet 11 | mkdir -p /tmp/.dotnet/shm 12 | 13 | # call base assemble script 14 | $STI_SCRIPTS_PATH/assemble -------------------------------------------------------------------------------- /6.0/build/test/rm-tmp-dotnet/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | # generate a project 6 | pushd /tmp/src 7 | dotnet new web --no-restore 8 | popd 9 | 10 | # ensure something exists at /tmp/.dotnet 11 | mkdir -p /tmp/.dotnet/shm 12 | 13 | # call base assemble script 14 | $STI_SCRIPTS_PATH/assemble -------------------------------------------------------------------------------- /7.0/build/test/rm-tmp-dotnet/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | # generate a project 6 | pushd /tmp/src 7 | dotnet new web --no-restore 8 | popd 9 | 10 | # ensure something exists at /tmp/.dotnet 11 | mkdir -p /tmp/.dotnet/shm 12 | 13 | # call base assemble script 14 | $STI_SCRIPTS_PATH/assemble -------------------------------------------------------------------------------- /8.0/build/test/rm-tmp-dotnet/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | # generate a project 6 | pushd /tmp/src 7 | dotnet new web --no-restore 8 | popd 9 | 10 | # ensure something exists at /tmp/.dotnet 11 | mkdir -p /tmp/.dotnet/shm 12 | 13 | # call base assemble script 14 | $STI_SCRIPTS_PATH/assemble -------------------------------------------------------------------------------- /9.0/build/test/rm-tmp-dotnet/.s2i/bin/assemble: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | # generate a project 6 | pushd /tmp/src 7 | dotnet new web --no-restore 8 | popd 9 | 10 | # ensure something exists at /tmp/.dotnet 11 | mkdir -p /tmp/.dotnet/shm 12 | 13 | # call base assemble script 14 | $STI_SCRIPTS_PATH/assemble -------------------------------------------------------------------------------- /2.0/build/test/devmode-src/src/app/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.0 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.1/build/test/devmode-src/src/app/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.1 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2.2/build/test/devmode-src/src/app/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.2 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /1.0/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.0/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.1/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.1/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.0/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet restore -r rhel.7-x64 6 | dotnet publish -f netcoreapp2.0 -c Release -r rhel.7-x64 --self-contained false /p:PublishWithAspNetCoreTargetManifest=false 7 | 8 | tar -czvf app.tar.gz -C bin/Release/netcoreapp2.0/rhel.7-x64/publish . -------------------------------------------------------------------------------- /2.1/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet restore -r rhel.7-x64 6 | dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained false /p:PublishWithAspNetCoreTargetManifest=false 7 | 8 | tar -czvf app.tar.gz -C bin/Release/netcoreapp2.1/rhel.7-x64/publish . -------------------------------------------------------------------------------- /2.2/runtime/test/aspnet-hello-world/build-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf bin obj 4 | 5 | dotnet restore -r rhel.7-x64 6 | dotnet publish -f netcoreapp2.2 -c Release -r rhel.7-x64 --self-contained false /p:PublishWithAspNetCoreTargetManifest=false 7 | 8 | tar -czvf app.tar.gz -C bin/Release/netcoreapp2.2/rhel.7-x64/publish . -------------------------------------------------------------------------------- /5.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /6.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /7.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /8.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /9.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net9.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /10.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /10.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net10.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /2.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.1/build/content_sets.yml.rhel8: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-8-for-x86_64-baseos-rpms 8 | - rhel-8-for-x86_64-appstream-rpms 9 | -------------------------------------------------------------------------------- /2.1/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.1/runtime/content_sets.yml.rhel8: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-8-for-x86_64-baseos-rpms 8 | - rhel-8-for-x86_64-appstream-rpms 9 | -------------------------------------------------------------------------------- /2.2/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /3.0/build/content_sets.yml.rhel8: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-8-for-x86_64-baseos-rpms 8 | - rhel-8-for-x86_64-appstream-rpms 9 | -------------------------------------------------------------------------------- /3.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /3.0/runtime/content_sets.yml.rhel8: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-8-for-x86_64-baseos-rpms 8 | - rhel-8-for-x86_64-appstream-rpms 9 | -------------------------------------------------------------------------------- /3.1/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /5.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /6.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /7.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /8.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /9.0/build/test/dotnet-configuration-debug/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /10.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /2.1/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.1/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.1 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /2.2/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.2/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /3.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 6 | DOTNET_VERBOSITY=normal 7 | DOTNET_PUBLISH_READYTORUN=true -------------------------------------------------------------------------------- /3.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /3.0/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /3.1/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 6 | DOTNET_VERBOSITY=normal 7 | DOTNET_PUBLISH_READYTORUN=true -------------------------------------------------------------------------------- /3.1/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /3.1/build/test/helloworld-fs/helloworld.fsproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.1 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /5.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 6 | DOTNET_VERBOSITY=normal 7 | DOTNET_PUBLISH_READYTORUN=true -------------------------------------------------------------------------------- /5.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /6.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /7.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /8.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /9.0/build/test/dotnet-configuration-release/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EnvvarTest 4 | { 5 | public static class Program 6 | { 7 | public static void Main() 8 | { 9 | #if DEBUG 10 | Console.WriteLine("Debug"); 11 | #else 12 | Console.WriteLine("Release"); 13 | #endif 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.0/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /1.0/test/asp-net-hello-world-envvar/src/lib/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0-*", 3 | "buildOptions": { 4 | "debugType": "portable" 5 | }, 6 | "dependencies": {}, 7 | "frameworks": { 8 | "netstandard1.6": { 9 | "dependencies": { 10 | "NETStandard.Library": "1.6.0" 11 | } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.1/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /1.1/test/asp-net-hello-world-envvar/src/lib/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0-*", 3 | "buildOptions": { 4 | "debugType": "portable" 5 | }, 6 | "dependencies": {}, 7 | "frameworks": { 8 | "netstandard1.6": { 9 | "dependencies": { 10 | "NETStandard.Library": "1.6.1" 11 | } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /9.0/build/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Print DOTNET_SSL_DIRS unsupported. 5 | source /opt/app-root/etc/trust_ssl_dirs 6 | 7 | if [ -n "${DOTNET_INFO}" ]; then 8 | /usr/libexec/s2i/container-tool info 9 | fi 10 | 11 | cd $DOTNET_APP_PATH 12 | 13 | echo "---> Running application ..." 14 | exec "./$DOTNET_DEFAULT_CMD" 15 | -------------------------------------------------------------------------------- /2.0/build/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1 test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_SOURCES=https://api.nuget.org/v3/index.json https://www.myget.org/F/s2i-dotnetcore 6 | DOTNET_PACK=true 7 | DOTNET_NPM_TOOLS=bower gulp -------------------------------------------------------------------------------- /2.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_SOURCES=https://api.nuget.org/v3/index.json https://www.myget.org/F/s2i-dotnetcore 6 | DOTNET_VERBOSITY=normal -------------------------------------------------------------------------------- /2.2/build/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /3.0/build/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /8.0/build/s2i/bin/run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Trust certificates from DOTNET_SSL_DIRS. 5 | source /opt/app-root/etc/trust_ssl_dirs 6 | 7 | if [ -n "${DOTNET_INFO}" ]; then 8 | /usr/libexec/s2i/container-tool info 9 | fi 10 | 11 | cd $DOTNET_APP_PATH 12 | 13 | echo "---> Running application ..." 14 | exec "./$DOTNET_DEFAULT_CMD" 15 | -------------------------------------------------------------------------------- /2.0/runtime/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /2.1/build/content_sets.yml.rhel7: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /2.1/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_SOURCES=https://api.nuget.org/v3/index.json https://www.myget.org/F/s2i-dotnetcore 6 | DOTNET_VERBOSITY=normal 7 | -------------------------------------------------------------------------------- /2.2/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 4 | DOTNET_ASSEMBLY_NAME=SampleApp 5 | DOTNET_RESTORE_SOURCES=https://api.nuget.org/v3/index.json https://www.myget.org/F/s2i-dotnetcore 6 | DOTNET_VERBOSITY=normal 7 | -------------------------------------------------------------------------------- /2.2/runtime/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /3.0/runtime/content_sets.yml: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /2.1/runtime/content_sets.yml.rhel7: -------------------------------------------------------------------------------- 1 | # This file lists which yum repos are needed to update content in this image. 2 | # This is used by the Red Hat registry to determine the container status by 3 | # correlating these repos to known CVEs. 4 | # 5 | --- 6 | x86_64: 7 | - rhel-7-server-rpms 8 | - rhel-server-rhscl-7-rpms 9 | - rhel-7-server-dotnet-rpms 10 | -------------------------------------------------------------------------------- /1.0/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /1.1/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /10.0/build/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /2.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /2.1/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /2.2/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /3.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /3.1/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /5.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /6.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /7.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /8.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /9.0/runtime/root/usr/bin/fix-permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix permissions on the given directory to allow owner/group read/write of 3 | # regular files and execute of directories. 4 | # Note: Openshift uses random UIDs for running apps. Thus we need to grant 5 | # some world-writable perms :( 6 | chgrp -R 0 $1 7 | chmod -R og+rw $1 8 | find $1 -type d -exec chmod g+x {} + 9 | -------------------------------------------------------------------------------- /10.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_CONFIGURATION=Release 4 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 5 | DOTNET_ASSEMBLY_NAME=SampleApp 6 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 7 | DOTNET_VERBOSITY=normal 8 | DOTNET_PUBLISH_READYTORUN=true 9 | -------------------------------------------------------------------------------- /6.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_CONFIGURATION=Release 4 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 5 | DOTNET_ASSEMBLY_NAME=SampleApp 6 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 7 | DOTNET_VERBOSITY=normal 8 | DOTNET_PUBLISH_READYTORUN=true 9 | -------------------------------------------------------------------------------- /7.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_CONFIGURATION=Release 4 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 5 | DOTNET_ASSEMBLY_NAME=SampleApp 6 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 7 | DOTNET_VERBOSITY=normal 8 | DOTNET_PUBLISH_READYTORUN=true 9 | -------------------------------------------------------------------------------- /8.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_CONFIGURATION=Release 4 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 5 | DOTNET_ASSEMBLY_NAME=SampleApp 6 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 7 | DOTNET_VERBOSITY=normal 8 | DOTNET_PUBLISH_READYTORUN=true 9 | -------------------------------------------------------------------------------- /9.0/build/test/asp-net-hello-world-envvar2/.s2i/environment: -------------------------------------------------------------------------------- 1 | DOTNET_STARTUP_PROJECT=src/app/app.csproj 2 | DOTNET_CONFIGURATION=Debug 3 | DOTNET_TEST_CONFIGURATION=Release 4 | DOTNET_TEST_PROJECTS=test/test1/test1.csproj test/test2 5 | DOTNET_ASSEMBLY_NAME=SampleApp 6 | DOTNET_RESTORE_CONFIGFILE=src/app/NuGet.Config.s2i 7 | DOTNET_VERBOSITY=normal 8 | DOTNET_PUBLISH_READYTORUN=true 9 | -------------------------------------------------------------------------------- /1.0/test/helloworld/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0-*", 3 | "buildOptions": { 4 | "emitEntryPoint": true 5 | }, 6 | "dependencies": { 7 | "Microsoft.NETCore.App": { 8 | "type": "platform", 9 | "version": "1.0.0" 10 | } 11 | }, 12 | "frameworks": { 13 | "netcoreapp1.0": { 14 | "imports": "dnxcore50" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /1.1/test/helloworld/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0-*", 3 | "buildOptions": { 4 | "emitEntryPoint": true 5 | }, 6 | "dependencies": { 7 | "Microsoft.NETCore.App": { 8 | "type": "platform", 9 | "version": "1.1.0" 10 | } 11 | }, 12 | "frameworks": { 13 | "netcoreapp1.1": { 14 | "imports": "dnxcore50" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /2.1/build/test/aspnetcoreimplicitversion/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /2.2/build/test/aspnetcoreimplicitversion/app.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /5.0/runtime/default-cmd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat <' for more information. 9 | EOF 10 | --------------------------------------------------------------------------------