Add a default BuildConstants and change encoding on save (#1026)

This commit is contained in:
Ross Brodbeck
2021-03-26 12:26:24 -04:00
committed by GitHub
parent 8109c962f0
commit 2b5ddd7c21
3 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
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";
}
}
}