Does the program not start without installing Visual Studio?

We are working on a reservation system for the company. When we first tried to run it on our computer, he said that we need to download the .NET Framework 4.0. So, we did it (more precisely, we downloaded version 4.5, since the link for 4.0 did not work). Now, when we try to run it, nothing happens.

We created a C # program with Entity Framework - Code First, if that narrows it down.

Are we missing something in the settings when publishing? We tried to compile it in the release and the publication wizard, but we are not working.

+5
source share
2 answers

, , . , / DLL ().

- GAC , - , , .net, GAC. , , DLL GAC, GAC. sharepoint .

Windows. .

p.s. asp.net, regiis.exe .

+1

, . , , :

public void log(string msg)
{
  StreamWriter file2 = new StreamWriter(@"c:\file.txt", true);
  file2.WriteLine(msg);
  file2.Close();
}

log("InitializeComponent");

FormLoad, . .

0

All Articles