コード例 #1
0
ファイル: Project.cs プロジェクト: yuchong-pan/cli-lab
        private void CopyGlobalProperties(IDictionary <string, string> globalProperties)
        {
            if (globalProperties == null)
            {
                return;
            }

            foreach (var globalProperty in globalProperties)
            {
                GlobalProperties.Set(globalProperty.Key, globalProperty.Value);
            }
        }