protected string GetTempFile()

in src/Shared/MSBuildSdkTestBase.cs [89:97]


        protected string GetTempFile(string name)
        {
            if (name == null)
            {
                throw new ArgumentNullException(nameof(name));
            }

            return Path.Combine(TestRootPath, name);
        }