├── .github └── workflows │ ├── build-on-push.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md └── WorkflowTest ├── WorkflowTest.sln ├── WorkflowTestLibrary ├── Properties │ └── AssemblyInfo.cs ├── Test.cs ├── WorkflowTestLibrary.csproj └── packages.config └── WorkflowTestProgram ├── ControlSystem.cs ├── Properties └── AssemblyInfo.cs ├── VersionInfo.cs ├── WorkflowTestProgram.csproj └── packages.config /.github/workflows/build-on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/.github/workflows/build-on-push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/README.md -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTest.sln -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestLibrary/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestLibrary/Test.cs -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestLibrary/WorkflowTestLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestLibrary/WorkflowTestLibrary.csproj -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestLibrary/packages.config -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestProgram/ControlSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestProgram/ControlSystem.cs -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestProgram/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestProgram/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestProgram/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestProgram/VersionInfo.cs -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestProgram/WorkflowTestProgram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestProgram/WorkflowTestProgram.csproj -------------------------------------------------------------------------------- /WorkflowTest/WorkflowTestProgram/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/github-build-cpz/HEAD/WorkflowTest/WorkflowTestProgram/packages.config --------------------------------------------------------------------------------