Beispiel #1
0
        static void Main(string[] args)
        {
            try
            {
                int argIndex = 0;
                string edmxPath = args[argIndex++];
                string edmxName;
                if (string.IsNullOrEmpty(edmxPath))
                    edmxName = null;
                else
                    edmxName = Path.GetFileNameWithoutExtension(edmxPath);
                string projectDirectoryPath = args[argIndex++];
                string toolsClientWPFPath = args[argIndex++];
                string rootNamespace = args[argIndex++];
                string svcUrl = args[argIndex++];
                string waqsDirectory = args[argIndex++];
                string waqsGeneralDirectory = args[argIndex++];
                string expressionTransformerPath = args[argIndex++];
                string serviceContractPath = args[argIndex++];
                string entitiesPath = args[argIndex++];
                string clientContextPath = args[argIndex++];
                string clientContextInterfacesPath = args[argIndex++];
                string serverEntitiesSolutionPath = args[argIndex++];
                string serverEntitiesProjectPath = args[argIndex++];
                string netVersion = args[argIndex++];
                string vsVersion = args[argIndex++];
                string kind = args[argIndex++];
                bool sourceControl = args[argIndex++] == "WithSourceControl";
                string slnFilePath = args[argIndex++];
                string slnTTIncludesPath = Path.Combine(Path.GetDirectoryName(slnFilePath), "WPFClientTemplates");
                string serverEntitiesFolderPath = null;
                string specificationsSlnFilePath = slnFilePath;
                string specificationsCsprojPath = null;
                string specificationsFolderPath = null;
                string dtoSlnFilePath = null;
                string dtoCsprojPath = null;
                string dtoFolderPath = null;
                string serverEntitiesNamespace = null;

                if (kind == "All" || kind == "WithoutFramework" || kind == "WithoutGlobal" || kind == "WithoutGlobalWithoutFramework")
                {
                    dtoSlnFilePath = specificationsSlnFilePath;
                    specificationsCsprojPath = args[argIndex++];
                    specificationsFolderPath = args[argIndex++];
                    dtoCsprojPath = args[argIndex++];
                    dtoFolderPath = args[argIndex++];
                    var edmxDirectoryPath = Path.GetDirectoryName(edmxPath);
                    if (edmxDirectoryPath == Path.GetDirectoryName(serverEntitiesProjectPath))
                    {
                        if (Directory.Exists(specificationsFolderPath = Path.Combine(edmxDirectoryPath, "Specifications")))
                            specificationsCsprojPath = serverEntitiesProjectPath;
                        if (Directory.Exists(dtoFolderPath = Path.Combine(edmxDirectoryPath, "DTO")))
                            dtoCsprojPath = serverEntitiesProjectPath;
                    }
                    serverEntitiesFolderPath = Path.GetDirectoryName(args[argIndex]);
                    string entityContent;
                    using (var sr = new StreamReader(args[argIndex]))
                    {
                        entityContent = sr.ReadToEnd();
                    }
                    serverEntitiesNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(entityContent));
                }

                if (!Directory.Exists(waqsDirectory))
                {
                    string serviceContractNamespace = null;
                    string entitiesNamespace = null;
                    string clientContextNamespace = null;
                    string clientContextInterfacesNamespace = null;
                    if (kind == "GlobalOnly" && !(string.IsNullOrEmpty(expressionTransformerPath) || string.IsNullOrEmpty(serviceContractPath) || string.IsNullOrEmpty(entitiesPath) || string.IsNullOrEmpty(clientContextPath) || string.IsNullOrEmpty(clientContextInterfacesPath)))
                    {
                        string expressionTransformerContent;
                        using (var sr = new StreamReader(expressionTransformerPath))
                        {
                            expressionTransformerContent = sr.ReadToEnd();
                        }
                        string serviceContractContent;
                        using (var sr = new StreamReader(serviceContractPath))
                        {
                            serviceContractContent = sr.ReadToEnd();
                        }
                        serviceContractNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(serviceContractContent));
                        string entitiesContent;
                        using (var sr = new StreamReader(entitiesPath))
                        {
                            entitiesContent = sr.ReadToEnd();
                        }
                        entitiesNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(entitiesContent));
                        string clientContextContent;
                        using (var sr = new StreamReader(clientContextPath))
                        {
                            clientContextContent = sr.ReadToEnd();
                        }
                        clientContextNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(clientContextContent));
                        string clientContextInterfacesContent;
                        using (var sr = new StreamReader(clientContextInterfacesPath))
                        {
                            clientContextInterfacesContent = sr.ReadToEnd();
                        }
                        clientContextInterfacesNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(clientContextInterfacesContent));
                    }

                    if (kind == "All" || kind == "WithoutFramework" || kind == "GlobalOnly")
                    {
                        if (kind == "GlobalOnly")
                        {
                            string contextsFilePath = Path.Combine(waqsGeneralDirectory, "Contexts.xml");
                            if (Directory.Exists(waqsGeneralDirectory))
                            {
                                if (File.Exists(contextsFilePath))
                                {
                                    var contexts = XElement.Load(contextsFilePath);
                                    contexts.Add(
                                        XElement.Parse(
                                            string.Format(
                                                "<Context Name=\"{0}\" WAQS=\"..\\WAQS.{0}\\{0}.Client.WPF.waqs\" />",
                                                edmxName)));
                                    contexts.Save(contextsFilePath);
                                }
                            }
                            else
                            {
                                Directory.CreateDirectory(waqsGeneralDirectory);
                                using (var sw = new StreamWriter(contextsFilePath))
                                {
                                    sw.WriteLine(string.Concat(
                                        @"<Contexts>
            <Context Name=", "\"{0}\" WAQS=\"..\\WAQS.{0}\\{0}.Client.WPF.waqs\" />", @"
            </Contexts>"), edmxName);
                                }
                            }
                        }
                        string appXamlFilePath = Path.Combine(projectDirectoryPath, "App.xaml");
                        XElement appXaml = XElement.Load(appXamlFilePath);
                        string appXamlCsFilePath = Path.Combine(projectDirectoryPath, "App.xaml.cs");
                        if (appXaml != null)
                        {
                            string appXamlCsContent;
                            using (var sr = new StreamReader(appXamlCsFilePath))
                            {
                                appXamlCsContent = sr.ReadToEnd();
                            }
                            if (string.IsNullOrEmpty(clientContextNamespace))
                                clientContextNamespace = rootNamespace + ".ClientContext";
                            if (string.IsNullOrEmpty(clientContextInterfacesNamespace))
                                clientContextInterfacesNamespace = rootNamespace + ".ClientContext.Interfaces";
                            XAttribute startupUri = appXaml.Attribute("StartupUri");
                            if (startupUri != null)
                            {
                                string pageXamlFile = startupUri.Value;
                                string pageTypeName = XElement.Load(Path.Combine(projectDirectoryPath, pageXamlFile)).Attribute(XName.Get("Class", "http://schemas.microsoft.com/winfx/2006/xaml")).Value;
                                startupUri.Remove();
                                appXaml.Save(appXamlFilePath);

                                appXamlCsContent = new ApplicationStartupRewriter(edmxName, rootNamespace, clientContextNamespace, clientContextInterfacesNamespace, pageTypeName).Visit(SyntaxFactory.ParseCompilationUnit(appXamlCsContent)).NormalizeWhitespace().ToString();
                            }
                            else
                            {
                                appXamlCsContent = new ApplicationStartupRewriter(edmxName, rootNamespace, clientContextNamespace, clientContextInterfacesNamespace, first: false).Visit(SyntaxFactory.ParseCompilationUnit(appXamlCsContent)).NormalizeWhitespace().ToString();
                            }
                            using (var sw = new StreamWriter(appXamlCsFilePath))
                            {
                                sw.Write(appXamlCsContent);
                            }
                        }

                        string appFilePath = Path.Combine(projectDirectoryPath, "app.config");
                        if (!File.Exists(appFilePath))
                            CopyFile(Path.Combine(toolsClientWPFPath, "app.config"), appFilePath);

                        XElement clientConfig = XElement.Load(appFilePath);
                        XElement serviceModel = clientConfig.Element("system.serviceModel");
                        XElement bindings;
                        XElement customBinding;
                        if (serviceModel == null)
                            clientConfig.Add(serviceModel = new XElement("system.serviceModel", new XElement("bindings", customBinding = new XElement("customBinding"))));
                        else if ((bindings = serviceModel.Element("bindings")) == null)
                            serviceModel.Add(new XElement("bindings", customBinding = new XElement("customBinding")));
                        else if ((customBinding = bindings.Element("customBinding")) == null)
                            bindings.Add(customBinding = new XElement("customBinding"));

                        customBinding.Add(
                            new XElement("binding",
                                new XAttribute("name", string.Format("CustomBinding_I{0}Service", edmxName)),
                                new XElement("binaryMessageEncoding",
                                    new XAttribute("maxReadPoolSize", "2147483647"),
                                    new XAttribute("maxWritePoolSize", "2147483647"),
                                    new XAttribute("maxSessionSize", "2147483647"),
                                    new XElement("readerQuotas",
                                        new XAttribute("maxDepth", "2147483647"),
                                        new XAttribute("maxStringContentLength", "2147483647"),
                                        new XAttribute("maxArrayLength", "2147483647"),
                                        new XAttribute("maxBytesPerRead", "2147483647"),
                                        new XAttribute("maxNameTableCharCount", "2147483647"))),
                                new XElement("httpTransport",
                                    new XAttribute("manualAddressing", "false"),
                                    new XAttribute("maxBufferPoolSize", "2147483647"),
                                    new XAttribute("maxReceivedMessageSize", "2147483647"),
                                    new XAttribute("allowCookies", "false"),
                                    new XAttribute("authenticationScheme", "Anonymous"),
                                    new XAttribute("bypassProxyOnLocal", "false"),
                                    new XAttribute("decompressionEnabled", "true"),
                                    new XAttribute("hostNameComparisonMode", "StrongWildcard"),
                                    new XAttribute("keepAliveEnabled", "true"),
                                    new XAttribute("maxBufferSize", "2147483647"),
                                    new XAttribute("proxyAuthenticationScheme", "Anonymous"),
                                    new XAttribute("realm", ""),
                                    new XAttribute("transferMode", "Buffered"),
                                    new XAttribute("unsafeConnectionNtlmAuthentication", "false"),
                                    new XAttribute("useDefaultWebProxy", "true"))));
                        XElement client;
                        if ((client = serviceModel.Element("client")) == null)
                            serviceModel.Add(client = new XElement("client"));
                        client.Add(
                            new XElement("endpoint",
                                new XAttribute("address", svcUrl),
                                new XAttribute("binding", "customBinding"),
                                new XAttribute("bindingConfiguration", string.Format("CustomBinding_I{0}Service", edmxName)),
                                new XAttribute("contract", string.Format("{0}.I{1}Service", serviceContractNamespace ?? (rootNamespace + ".ClientContext.ServiceReference"), edmxName)),
                                new XAttribute("name", string.Format("CustomBinding_I{0}Service", edmxName))));
                        clientConfig.Save(appFilePath);
                    }

                    Directory.CreateDirectory(waqsDirectory);

                    string toolsWaqsPath = null;
                    switch (kind)
                    {
                        case "All":
                        case "WithoutGlobal":
                            toolsWaqsPath = Path.Combine(toolsClientWPFPath, "Client.WPF.waqs");
                            break;
                        case "WithoutFramework":
                        case "WithoutGlobalWithoutFramework":
                            toolsWaqsPath = Path.Combine(toolsClientWPFPath, "ClientWithoutFramework.WPF.waqs");
                            break;
                        case "FrameworkOnly":
                            toolsWaqsPath = Path.Combine(toolsClientWPFPath, "ClientFrameworkOnly.WPF.waqs");
                            edmxName = "Framework";
                            break;
                        case "GlobalOnly":
                            toolsWaqsPath = Path.Combine(toolsClientWPFPath, "ClientGlobalOnly.WPF.waqs");
                            break;
                    }
                    string clientWPFWAQS = Path.Combine(waqsDirectory, edmxName + ".Client.WPF.waqs");
                    if (toolsWaqsPath != null)
                    {
                        if (!File.Exists(clientWPFWAQS))
                        {
                            serverEntitiesSolutionPath = GetRelativePath(serverEntitiesSolutionPath, waqsDirectory);
                            serverEntitiesProjectPath = GetRelativePath(serverEntitiesProjectPath, waqsDirectory);
                            var slnRelativeFilePath = GetRelativePath(slnFilePath, waqsDirectory);
                            specificationsCsprojPath = GetRelativePath(specificationsCsprojPath, waqsDirectory);
                            specificationsFolderPath = GetRelativePath(specificationsFolderPath, waqsDirectory);
                            serverEntitiesFolderPath = GetRelativePath(serverEntitiesFolderPath, waqsDirectory);
                            dtoSlnFilePath = GetRelativePath(dtoSlnFilePath, waqsDirectory);
                            dtoCsprojPath = GetRelativePath(dtoCsprojPath, waqsDirectory);
                            dtoFolderPath = GetRelativePath(dtoFolderPath, waqsDirectory);
                            CopyFile(toolsWaqsPath, clientWPFWAQS, new[] { "$edmxPath$", edmxPath.Contains(":") ? GetRelativePath(edmxPath, waqsDirectory) : "..\\" + edmxPath }, new[] { "$svcUrl$", svcUrl }, new[] { "$EntitiesNamespace$", entitiesNamespace }, new[] { "$ClientContextNamespace$", clientContextNamespace }, new[] { "$ClientContextInterfacesNamespace$", clientContextInterfacesNamespace }, new[] { "$SpecificationsSlnFilePath$", slnRelativeFilePath }, new[] { "$SpecificationsCsprojPath$", specificationsCsprojPath }, new[] { "$SpecificationsFolderPath$", specificationsFolderPath + "\\" }, new[] { "$DTOSlnFilePath$", dtoSlnFilePath }, new[] { "$DTOCsprojPath$", dtoCsprojPath }, new[] { "$DTOFolderPath$", dtoFolderPath + "\\" }, new[] { "$ServerEntitiesSlnFilePath$", serverEntitiesSolutionPath }, new[] { "$ServerEntitiesCsprojPath$", serverEntitiesProjectPath }, new[] { "$ServerEntitiesFolderPath$", serverEntitiesFolderPath + "\\" }, new[] { "$ServerEntitiesNamespace$", serverEntitiesNamespace });
                        }

                        if (kind != "GlobalOnly")
                        {
                            string clientWPFTT = Path.Combine(waqsDirectory, edmxName + ".Client.WPF.tt");
                            if (!File.Exists(clientWPFTT))
                                CopyTTFile(Path.Combine(toolsClientWPFPath, "Client.WPF.tt"), clientWPFTT, sourceControl, slnTTIncludesPath, new[] { "$edmxName$", edmxName }, new[] { "$RootNamespace$", rootNamespace }, new[] { "$NetVersion$", netVersion }, new[] { "$VSVersion$", vsVersion });
                        }
                    }

                    if (sourceControl)
                    {
                        string ttIncludesSourcePath = Path.Combine(Path.GetDirectoryName(toolsClientWPFPath), "ttincludes");
                        string slnLocalTTIncludesPath = Path.Combine(Path.GetDirectoryName(slnFilePath), "WPFClientTemplates");
                        if (!Directory.Exists(slnLocalTTIncludesPath))
                            Directory.CreateDirectory(slnLocalTTIncludesPath);
                        CopyTTIncludes(vsVersion, netVersion, ttIncludesSourcePath, slnLocalTTIncludesPath);
                        ttIncludesSourcePath = Path.Combine(ttIncludesSourcePath, vsVersion);
                        CopyTTIncludes(vsVersion, netVersion, ttIncludesSourcePath, slnLocalTTIncludesPath);
                    }
                }
            }
            catch (Exception e)
            {
                Console.ForegroundColor = ConsoleColor.Red;
                Console.WriteLine(e.Message);
                Console.ReadLine();
            }
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            try
            {
                int    argIndex = 0;
                string edmxPath = args[argIndex++];
                string edmxName;
                if (string.IsNullOrEmpty(edmxPath))
                {
                    edmxName = null;
                }
                else
                {
                    edmxName = Path.GetFileNameWithoutExtension(edmxPath);
                }
                string projectDirectoryPath = args[argIndex++];
                string toolsClientWPFPath   = args[argIndex++];
                string rootNamespace        = args[argIndex++];
                string svcUrl                      = args[argIndex++];
                string waqsDirectory               = args[argIndex++];
                string waqsGeneralDirectory        = args[argIndex++];
                string expressionTransformerPath   = args[argIndex++];
                string serviceContractPath         = args[argIndex++];
                string entitiesPath                = args[argIndex++];
                string clientContextPath           = args[argIndex++];
                string clientContextInterfacesPath = args[argIndex++];
                string serverEntitiesSolutionPath  = args[argIndex++];
                string serverEntitiesProjectPath   = args[argIndex++];
                string netVersion                  = args[argIndex++];
                string vsVersion                   = args[argIndex++];
                string kind                      = args[argIndex++];
                bool   sourceControl             = args[argIndex++] == "WithSourceControl";
                string slnFilePath               = args[argIndex++];
                string slnTTIncludesPath         = Path.Combine(Path.GetDirectoryName(slnFilePath), "WPFClientTemplates");
                string serverEntitiesFolderPath  = null;
                string specificationsSlnFilePath = slnFilePath;
                string specificationsCsprojPath  = null;
                string specificationsFolderPath  = null;
                string dtoSlnFilePath            = null;
                string dtoCsprojPath             = null;
                string dtoFolderPath             = null;
                string serverEntitiesNamespace   = null;

                if (kind == "All" || kind == "WithoutFramework" || kind == "WithoutGlobal" || kind == "WithoutGlobalWithoutFramework")
                {
                    dtoSlnFilePath           = specificationsSlnFilePath;
                    specificationsCsprojPath = args[argIndex++];
                    specificationsFolderPath = args[argIndex++];
                    dtoCsprojPath            = args[argIndex++];
                    dtoFolderPath            = args[argIndex++];
                    var edmxDirectoryPath = Path.GetDirectoryName(edmxPath);
                    if (edmxDirectoryPath == Path.GetDirectoryName(serverEntitiesProjectPath))
                    {
                        if (Directory.Exists(specificationsFolderPath = Path.Combine(edmxDirectoryPath, "Specifications")))
                        {
                            specificationsCsprojPath = serverEntitiesProjectPath;
                        }
                        if (Directory.Exists(dtoFolderPath = Path.Combine(edmxDirectoryPath, "DTO")))
                        {
                            dtoCsprojPath = serverEntitiesProjectPath;
                        }
                    }
                    serverEntitiesFolderPath = Path.GetDirectoryName(args[argIndex]);
                    string entityContent;
                    using (var sr = new StreamReader(args[argIndex]))
                    {
                        entityContent = sr.ReadToEnd();
                    }
                    serverEntitiesNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(entityContent));
                }

                if (!Directory.Exists(waqsDirectory))
                {
                    string serviceContractNamespace         = null;
                    string entitiesNamespace                = null;
                    string clientContextNamespace           = null;
                    string clientContextInterfacesNamespace = null;
                    if (kind == "GlobalOnly" && !(string.IsNullOrEmpty(expressionTransformerPath) || string.IsNullOrEmpty(serviceContractPath) || string.IsNullOrEmpty(entitiesPath) || string.IsNullOrEmpty(clientContextPath) || string.IsNullOrEmpty(clientContextInterfacesPath)))
                    {
                        string expressionTransformerContent;
                        using (var sr = new StreamReader(expressionTransformerPath))
                        {
                            expressionTransformerContent = sr.ReadToEnd();
                        }
                        string serviceContractContent;
                        using (var sr = new StreamReader(serviceContractPath))
                        {
                            serviceContractContent = sr.ReadToEnd();
                        }
                        serviceContractNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(serviceContractContent));
                        string entitiesContent;
                        using (var sr = new StreamReader(entitiesPath))
                        {
                            entitiesContent = sr.ReadToEnd();
                        }
                        entitiesNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(entitiesContent));
                        string clientContextContent;
                        using (var sr = new StreamReader(clientContextPath))
                        {
                            clientContextContent = sr.ReadToEnd();
                        }
                        clientContextNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(clientContextContent));
                        string clientContextInterfacesContent;
                        using (var sr = new StreamReader(clientContextInterfacesPath))
                        {
                            clientContextInterfacesContent = sr.ReadToEnd();
                        }
                        clientContextInterfacesNamespace = new GetNamespace().Visit(SyntaxFactory.ParseCompilationUnit(clientContextInterfacesContent));
                    }

                    if (kind == "All" || kind == "WithoutFramework" || kind == "GlobalOnly")
                    {
                        if (kind == "GlobalOnly")
                        {
                            string contextsFilePath = Path.Combine(waqsGeneralDirectory, "Contexts.xml");
                            if (Directory.Exists(waqsGeneralDirectory))
                            {
                                if (File.Exists(contextsFilePath))
                                {
                                    var contexts = XElement.Load(contextsFilePath);
                                    contexts.Add(
                                        XElement.Parse(
                                            string.Format(
                                                "<Context Name=\"{0}\" WAQS=\"..\\WAQS.{0}\\{0}.Client.WPF.waqs\" />",
                                                edmxName)));
                                    contexts.Save(contextsFilePath);
                                }
                            }
                            else
                            {
                                Directory.CreateDirectory(waqsGeneralDirectory);
                                using (var sw = new StreamWriter(contextsFilePath))
                                {
                                    sw.WriteLine(string.Concat(
                                                     @"<Contexts>
    <Context Name=", "\"{0}\" WAQS=\"..\\WAQS.{0}\\{0}.Client.WPF.waqs\" />", @"
</Contexts>"), edmxName);
                                }
                            }
                        }
                        string   appXamlFilePath   = Path.Combine(projectDirectoryPath, "App.xaml");
                        XElement appXaml           = XElement.Load(appXamlFilePath);
                        string   appXamlCsFilePath = Path.Combine(projectDirectoryPath, "App.xaml.cs");
                        if (appXaml != null)
                        {
                            string appXamlCsContent;
                            using (var sr = new StreamReader(appXamlCsFilePath))
                            {
                                appXamlCsContent = sr.ReadToEnd();
                            }
                            if (string.IsNullOrEmpty(clientContextNamespace))
                            {
                                clientContextNamespace = rootNamespace + ".ClientContext";
                            }
                            if (string.IsNullOrEmpty(clientContextInterfacesNamespace))
                            {
                                clientContextInterfacesNamespace = rootNamespace + ".ClientContext.Interfaces";
                            }
                            XAttribute startupUri = appXaml.Attribute("StartupUri");
                            if (startupUri != null)
                            {
                                string pageXamlFile = startupUri.Value;
                                string pageTypeName = XElement.Load(Path.Combine(projectDirectoryPath, pageXamlFile)).Attribute(XName.Get("Class", "http://schemas.microsoft.com/winfx/2006/xaml")).Value;
                                startupUri.Remove();
                                appXaml.Save(appXamlFilePath);

                                appXamlCsContent = new ApplicationStartupRewriter(edmxName, rootNamespace, clientContextNamespace, clientContextInterfacesNamespace, pageTypeName).Visit(SyntaxFactory.ParseCompilationUnit(appXamlCsContent)).NormalizeWhitespace().ToString();
                            }
                            else
                            {
                                appXamlCsContent = new ApplicationStartupRewriter(edmxName, rootNamespace, clientContextNamespace, clientContextInterfacesNamespace, first: false).Visit(SyntaxFactory.ParseCompilationUnit(appXamlCsContent)).NormalizeWhitespace().ToString();
                            }
                            using (var sw = new StreamWriter(appXamlCsFilePath))
                            {
                                sw.Write(appXamlCsContent);
                            }
                        }


                        string appFilePath = Path.Combine(projectDirectoryPath, "app.config");
                        if (!File.Exists(appFilePath))
                        {
                            CopyFile(Path.Combine(toolsClientWPFPath, "app.config"), appFilePath);
                        }

                        XElement clientConfig = XElement.Load(appFilePath);
                        XElement serviceModel = clientConfig.Element("system.serviceModel");
                        XElement bindings;
                        XElement customBinding;
                        if (serviceModel == null)
                        {
                            clientConfig.Add(serviceModel = new XElement("system.serviceModel", new XElement("bindings", customBinding = new XElement("customBinding"))));
                        }
                        else if ((bindings = serviceModel.Element("bindings")) == null)
                        {
                            serviceModel.Add(new XElement("bindings", customBinding = new XElement("customBinding")));
                        }
                        else if ((customBinding = bindings.Element("customBinding")) == null)
                        {
                            bindings.Add(customBinding = new XElement("customBinding"));
                        }

                        customBinding.Add(
                            new XElement("binding",
                                         new XAttribute("name", string.Format("CustomBinding_I{0}Service", edmxName)),
                                         new XElement("binaryMessageEncoding",
                                                      new XAttribute("maxReadPoolSize", "2147483647"),
                                                      new XAttribute("maxWritePoolSize", "2147483647"),
                                                      new XAttribute("maxSessionSize", "2147483647"),
                                                      new XElement("readerQuotas",
                                                                   new XAttribute("maxDepth", "2147483647"),
                                                                   new XAttribute("maxStringContentLength", "2147483647"),
                                                                   new XAttribute("maxArrayLength", "2147483647"),
                                                                   new XAttribute("maxBytesPerRead", "2147483647"),
                                                                   new XAttribute("maxNameTableCharCount", "2147483647"))),
                                         new XElement("httpTransport",
                                                      new XAttribute("manualAddressing", "false"),
                                                      new XAttribute("maxBufferPoolSize", "2147483647"),
                                                      new XAttribute("maxReceivedMessageSize", "2147483647"),
                                                      new XAttribute("allowCookies", "false"),
                                                      new XAttribute("authenticationScheme", "Anonymous"),
                                                      new XAttribute("bypassProxyOnLocal", "false"),
                                                      new XAttribute("decompressionEnabled", "true"),
                                                      new XAttribute("hostNameComparisonMode", "StrongWildcard"),
                                                      new XAttribute("keepAliveEnabled", "true"),
                                                      new XAttribute("maxBufferSize", "2147483647"),
                                                      new XAttribute("proxyAuthenticationScheme", "Anonymous"),
                                                      new XAttribute("realm", ""),
                                                      new XAttribute("transferMode", "Buffered"),
                                                      new XAttribute("unsafeConnectionNtlmAuthentication", "false"),
                                                      new XAttribute("useDefaultWebProxy", "true"))));
                        XElement client;
                        if ((client = serviceModel.Element("client")) == null)
                        {
                            serviceModel.Add(client = new XElement("client"));
                        }
                        client.Add(
                            new XElement("endpoint",
                                         new XAttribute("address", svcUrl),
                                         new XAttribute("binding", "customBinding"),
                                         new XAttribute("bindingConfiguration", string.Format("CustomBinding_I{0}Service", edmxName)),
                                         new XAttribute("contract", string.Format("{0}.I{1}Service", serviceContractNamespace ?? (rootNamespace + ".ClientContext.ServiceReference"), edmxName)),
                                         new XAttribute("name", string.Format("CustomBinding_I{0}Service", edmxName))));
                        clientConfig.Save(appFilePath);
                    }

                    Directory.CreateDirectory(waqsDirectory);

                    string toolsWaqsPath = null;
                    switch (kind)
                    {
                    case "All":
                    case "WithoutGlobal":
                        toolsWaqsPath = Path.Combine(toolsClientWPFPath, "Client.WPF.waqs");
                        break;

                    case "WithoutFramework":
                    case "WithoutGlobalWithoutFramework":
                        toolsWaqsPath = Path.Combine(toolsClientWPFPath, "ClientWithoutFramework.WPF.waqs");
                        break;

                    case "FrameworkOnly":
                        toolsWaqsPath = Path.Combine(toolsClientWPFPath, "ClientFrameworkOnly.WPF.waqs");
                        edmxName      = "Framework";
                        break;

                    case "GlobalOnly":
                        toolsWaqsPath = Path.Combine(toolsClientWPFPath, "ClientGlobalOnly.WPF.waqs");
                        break;
                    }
                    string clientWPFWAQS = Path.Combine(waqsDirectory, edmxName + ".Client.WPF.waqs");
                    if (toolsWaqsPath != null)
                    {
                        if (!File.Exists(clientWPFWAQS))
                        {
                            serverEntitiesSolutionPath = GetRelativePath(serverEntitiesSolutionPath, waqsDirectory);
                            serverEntitiesProjectPath  = GetRelativePath(serverEntitiesProjectPath, waqsDirectory);
                            var slnRelativeFilePath = GetRelativePath(slnFilePath, waqsDirectory);
                            specificationsCsprojPath = GetRelativePath(specificationsCsprojPath, waqsDirectory);
                            specificationsFolderPath = GetRelativePath(specificationsFolderPath, waqsDirectory);
                            serverEntitiesFolderPath = GetRelativePath(serverEntitiesFolderPath, waqsDirectory);
                            dtoSlnFilePath           = GetRelativePath(dtoSlnFilePath, waqsDirectory);
                            dtoCsprojPath            = GetRelativePath(dtoCsprojPath, waqsDirectory);
                            dtoFolderPath            = GetRelativePath(dtoFolderPath, waqsDirectory);
                            CopyFile(toolsWaqsPath, clientWPFWAQS, new[] { "$edmxPath$", edmxPath.Contains(":") ? GetRelativePath(edmxPath, waqsDirectory) : "..\\" + edmxPath }, new[] { "$svcUrl$", svcUrl }, new[] { "$EntitiesNamespace$", entitiesNamespace }, new[] { "$ClientContextNamespace$", clientContextNamespace }, new[] { "$ClientContextInterfacesNamespace$", clientContextInterfacesNamespace }, new[] { "$SpecificationsSlnFilePath$", slnRelativeFilePath }, new[] { "$SpecificationsCsprojPath$", specificationsCsprojPath }, new[] { "$SpecificationsFolderPath$", specificationsFolderPath + "\\" }, new[] { "$DTOSlnFilePath$", dtoSlnFilePath }, new[] { "$DTOCsprojPath$", dtoCsprojPath }, new[] { "$DTOFolderPath$", dtoFolderPath + "\\" }, new[] { "$ServerEntitiesSlnFilePath$", serverEntitiesSolutionPath }, new[] { "$ServerEntitiesCsprojPath$", serverEntitiesProjectPath }, new[] { "$ServerEntitiesFolderPath$", serverEntitiesFolderPath + "\\" }, new[] { "$ServerEntitiesNamespace$", serverEntitiesNamespace });
                        }

                        if (kind != "GlobalOnly")
                        {
                            string clientWPFTT = Path.Combine(waqsDirectory, edmxName + ".Client.WPF.tt");
                            if (!File.Exists(clientWPFTT))
                            {
                                CopyTTFile(Path.Combine(toolsClientWPFPath, "Client.WPF.tt"), clientWPFTT, sourceControl, slnTTIncludesPath, new[] { "$edmxName$", edmxName }, new[] { "$RootNamespace$", rootNamespace }, new[] { "$NetVersion$", netVersion }, new[] { "$VSVersion$", vsVersion });
                            }
                        }
                    }

                    if (sourceControl)
                    {
                        string ttIncludesSourcePath   = Path.Combine(Path.GetDirectoryName(toolsClientWPFPath), "ttincludes");
                        string slnLocalTTIncludesPath = Path.Combine(Path.GetDirectoryName(slnFilePath), "WPFClientTemplates");
                        if (!Directory.Exists(slnLocalTTIncludesPath))
                        {
                            Directory.CreateDirectory(slnLocalTTIncludesPath);
                        }
                        CopyTTIncludes(vsVersion, netVersion, ttIncludesSourcePath, slnLocalTTIncludesPath);
                        ttIncludesSourcePath = Path.Combine(ttIncludesSourcePath, vsVersion);
                        CopyTTIncludes(vsVersion, netVersion, ttIncludesSourcePath, slnLocalTTIncludesPath);
                    }
                }
            }
            catch (Exception e)
            {
                Console.ForegroundColor = ConsoleColor.Red;
                Console.WriteLine(e.Message);
                Console.ReadLine();
            }
        }