private void BuildBTN_Click(object sender, EventArgs e)
{
    //Compile Button

    // .net framework dependency version
            
    ICodeCompiler codeCompiler = new CSharpCodeProvider(new Dictionary<string, string>
    {
        {
            "CompilerVersion",
            "v4.0"
        }
    }).CreateCompiler();
   
    string output = "output.exe";

    if (!String.IsNullOrEmpty(ExeNameTB.Text))
    {
        output = ExeNameTB.Text + ".exe";
    }

Error says:

Warning CS0618 'CodeDomProvider.CreateCompiler()' is obsolete: 'Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.' rede builder C:\Users\hugo\Desktop\rede builder\UI\MainUI.cs 281 Active"

0

There are 0 answers