From 611817b5e44a9fd23e8744afec363f2eeb5d48ef Mon Sep 17 00:00:00 2001 From: Andy De George <67293991+adegeo@users.noreply.github.com> Date: Tue, 15 Sep 2020 11:15:26 -0700 Subject: [PATCH] Snippets config: Remove CPP triggers; Update to .NET 5 RC 1 (#44) * Update build-validation.yml * Update build-validation.yml * Update build-validation.yml --- .github/workflows/build-validation.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-validation.yml b/.github/workflows/build-validation.yml index f3a4f93..be8708a 100644 --- a/.github/workflows/build-validation.yml +++ b/.github/workflows/build-validation.yml @@ -9,19 +9,19 @@ on: - "**.cs" - "**.vb" - "**.fs" - - "**.cpp" - - "**.h" - "**.xaml" - "**.razor" - "**.cshtml" - "**.vbhtml" - - "**.*proj" + - "**.csproj" + - "**.vbproj" + - "**.fsproj" - "**global.json" - "**snippets.5000.json" branches: [ master ] env: - DOTNET_INSTALLER_CHANNEL: 'release/5.0.1xx-preview8' + DOTNET_INSTALLER_CHANNEL: 'release/5.0.1xx' DOTNET_DO_INSTALL: 'true' EnableNuGetPackageRestore: 'True'