0
How I create a SLN file that opens files .csproj
and how I create the file .csproj
too? Hence the csproj
will open the files .cs
and .dll
? Can you help me?
0
How I create a SLN file that opens files .csproj
and how I create the file .csproj
too? Hence the csproj
will open the files .cs
and .dll
? Can you help me?
-1
Archives .csproj
, .vbproj
and .cppproj
are XML files that contain information for solutions or projects that can be used in Visual Studio or in the Sharpdevelop. The archives .csproj
do not open files .dll
nor .cs
, they open nothing, it’s a simple file used in the programs I’ve already said up there.
Browser other questions tagged c#
You are not signed in. Login or sign up in order to post.
I have many files . Cs, wanted to know how to open all in Visual Studio, more also have the base files that are the DLL. And when compiling, I wanted to show in debug my project in . exe with the issues in . Cs
– user39571
You have the file
.sln
or.csproj
? If so, open one using Visual Studio and click onStart
up there, the executable (.exe
) will be in the folderbin\debug\
of your project.– CypherPotato
Dude you are explaining very wrongly, it needs to create a project and add the files
.cs
and this is entirely possible with theVisual Studio
– Felipe Assunção
RZ I don’t have the file, so I want to create it to open the files. Cs
– user39571
But I want it organized, I want the edited information in the DLL, when I compile, create DLL files with the information I edited
– user39571
You are creating a Windows Forms or Class Library project?
– CypherPotato
I’ve made up my mind.
– user39571