()
| 10 | static string BuildStartDay = "2022-04-25"; |
| 11 | |
| 12 | static string GenerateVersionString() |
| 13 | { |
| 14 | return string.Format( |
| 15 | "{0}.{1}.{2}.0", |
| 16 | Version.Major, |
| 17 | Version.Minor, |
| 18 | DateTime.Today.Subtract(DateTime.Parse(BuildStartDay)).TotalDays); |
| 19 | } |
| 20 | |
| 21 | static string RepositoryRoot = GitRepository.GetRootPath(); |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected