diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 80194b5..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build ChangeTimestamp - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - build: - runs-on: windows-latest - - strategy: - matrix: - configuration: [Release] - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Use .NET Framework version 4.0 - uses: microsoft/setup-msbuild@v1.0.2 - with: - dotnet-version: '4.0' - - - name: Restore NuGet packages - run: nuget restore ChangeTimestamp.sln - - - name: Build solution - run: msbuild.exe ChangeTimestamp.sln /t:Build /p:Configuration=${{ matrix.configuration }}