From 0f13922a8737408edbf915350460070a0be20ee7 Mon Sep 17 00:00:00 2001 From: Ferenc Hammerl Date: Wed, 26 May 2021 16:28:05 +0200 Subject: [PATCH] Ignore BuildConstants.cs --- .gitignore | 3 ++- src/Runner.Sdk/BuildConstants.cs | 19 ------------------- 2 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 src/Runner.Sdk/BuildConstants.cs diff --git a/.gitignore b/.gitignore index c43e89088..966f68e29 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,5 @@ _dotnetsdk TestResults TestLogs .DS_Store -**/*.DotSettings.user \ No newline at end of file +**/*.DotSettings.user +src/Runner.Sdk/BuildConstants.cs diff --git a/src/Runner.Sdk/BuildConstants.cs b/src/Runner.Sdk/BuildConstants.cs deleted file mode 100644 index 8d97bffcb..000000000 --- a/src/Runner.Sdk/BuildConstants.cs +++ /dev/null @@ -1,19 +0,0 @@ -namespace GitHub.Runner.Sdk -{ - /*** - * WARNING: This file is automatically regenerated on layout so the runner can provide version/commit info (do not manually edit it). - */ - public static class BuildConstants - { - public static class Source - { - public static readonly string CommitHash = "N/A"; - } - - public static class RunnerPackage - { - public static readonly string PackageName = "N/A"; - public static readonly string Version = "0"; - } - } -}