Compiling Microsoft Visual

Results 1 to 8 of 8
  1. #1
    Account Upgraded | Title Enabled! lFatelHighDef is offline
    MemberRank
    Feb 2011 Join Date
    330Posts

    Compiling Microsoft Visual

    Code:
    Error	1	Invalid parameter combination. Can only set either subset or profile parameters. Cannot set one or more subset parameters ("TargetFrameworkSubsets", "InstalledAssemblySubsetTables") and one or more profile parameters ("ProfileName", "FullFrameworkFolders", "FullFrameworkAssemblyTables") at the same time. 	Local
    This is editing the v88 localhost.


  2. #2
    Alpha Member XxОsirisxX is offline
    MemberRank
    Aug 2009 Join Date
    2,727Posts

    Re: Compiling Microsoft Visual

    Sorry, but this belongs to "Alternative Language". I'm afraid that I'll have to move this thread.

    Please, read the section specifications and rules before creating a new thread.

  3. #3
    Account Upgraded | Title Enabled! lFatelHighDef is offline
    MemberRank
    Feb 2011 Join Date
    330Posts

    Re: Compiling Microsoft Visual

    Sorry about that. Bump*

  4. #4
    Alpha Member Vakarian is offline
    MemberRank
    Apr 2008 Join Date
    Ohio, USALocation
    2,134Posts

    Re: Compiling Microsoft Visual

    Can you show the line of code you edited? Or the function itself? (right click on your line of code -> go to definition)

  5. #5
    Account Upgraded | Title Enabled! lFatelHighDef is offline
    MemberRank
    Feb 2011 Join Date
    330Posts

    Re: Compiling Microsoft Visual

    Sure. But all I did was edit the IP inside the localhost and some website information. I pressed F5 to compile and I received that error. Does that help? I'll list the code.

    Spoiler:
    Code:
    using System;
    using System.Collections.Generic;
    using System.Windows.Forms;
    using System.Net;
    using System.IO;
    using System.Security.Cryptography;
    using System.Net.NetworkInformation;
    using System.Diagnostics;
    
    namespace MapleHost
    {
        static class Program
        {
            public static frmMain form;
            public static string toIP = "76.206.250.221";
            public static bool resolveDNS = false;
            public static bool useGui = false;
            public static string regURL = "http://76.206.250.221";
            public static string accountCheck = "http://76.206.250.221/accountCheck.php";
            public static MapleMode Mode = MapleMode.GMS;
            public static string LogoLink = "http://76.206.250.221";
            public static string username = "WEDJLKEFDS";
            public static string password = "";
            public static ushort lowPort = 7575;
            public static ushort highPort = 7596;
    
            public static bool DevMode = false;
    
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                if (isrunning())
                {
                    Environment.Exit(0);
                    return;
                }
                if (resolveDNS) getIP();
                if (!checkIP(toIP))
                {
                    OnRelaunch();
                    return;
                }
                 string[] launchaprams =  Environment.GetCommandLineArgs();
                 if (launchaprams.Length > 1)
                 {
                     switch (launchaprams[1])
                     {
                         case "fix":
                             NetworkInterface toFix = frmMain.GetLoopBack();
                             if (toFix == null) return;
                             frmMain.DisableTunnel(toFix.Name);
                             MessageBox.Show("Fixed default settings.");
                             return;
                         case "dev_sec":
                             DevMode = true;
                             break;
                     }
                 }
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                form = new frmMain();
                if (useGui || Mode == MapleMode.GMS)
                {
                    Application.Run(form);
                }
                else
                {
                    Application.Run();
                }
            }
    
            public static void OnRelaunch()
            {
                if (!File.Exists(Properties.Settings.Default.launchpath))
                    return;
    
               Process Maple = new Process();
               Maple.StartInfo.FileName = Properties.Settings.Default.launchpath;
               if (Mode == MapleMode.GMS)
                    Maple.StartInfo.Arguments = "GameLaunching";
                Maple.Start();
            }
    
            public static bool isrunning()
            {
                string procName = System.Diagnostics.Process.GetCurrentProcess().ProcessName;
                return System.Diagnostics.Process.GetProcessesByName(procName).Length > 1;
            }
    
            public static bool checkIP(string input)
            {
                return true;
            } 
    
            public static string HashString(string input)
            {
                System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
                byte[] data = System.Text.Encoding.ASCII.GetBytes(input);
                string lulz = "";
                foreach (byte xy in data) lulz += xy.ToString("X2");
                return lulz;
            }
    
    
            public static void getIP()
            {
                IPHostEntry entry = Dns.GetHostEntry(toIP);
                if (entry.AddressList.Length > 0)
                    toIP = entry.AddressList[0].ToString();
            }
        }
    }


    I get the error the moment I load local.sln into Microsoft Visual

    Bump~

    Bump~
    Last edited by lFatelHighDef; 02-01-12 at 12:05 AM.

  6. #6
    Account Upgraded | Title Enabled! lFatelHighDef is offline
    MemberRank
    Feb 2011 Join Date
    330Posts

    Re: Compiling Microsoft Visual

    Bump~

  7. #7
    Account Upgraded | Title Enabled! lFatelHighDef is offline
    MemberRank
    Feb 2011 Join Date
    330Posts

    Re: Compiling Microsoft Visual

    Bump ~

  8. #8
    Account Upgraded | Title Enabled! lFatelHighDef is offline
    MemberRank
    Feb 2011 Join Date
    330Posts

    Re: Compiling Microsoft Visual

    Bump ~



Advertisement