private static JObject GetFeedJSON()

in GenerateToolingFeed/Program.cs [119:124]


        private static JObject GetFeedJSON(string feedName)
        {
            string path = Path.Combine(Directory.GetCurrentDirectory(), "..", feedName);
            string feedContent = File.ReadAllText(path);
            return JObject.Parse(feedContent);
        }