EvilZone
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Home
Help
Search
Login
Register
EvilZone
»
Programming and Scripting
»
.NET Framework
»
What are .csproj files
Print
Pages: [
1
]
Author
Topic: What are .csproj files (Read 4149 times)
0 Members and 1 Guest are viewing this topic.
m0l0ko
Peasant
Posts: 129
Cookies: -4
What are .csproj files
«
on:
October 14, 2012, 05:10:52 pm »
What are .csproj files? Are they like configuration files that tell the project what files to load?
«
Last Edit: October 14, 2012, 05:17:16 pm by m0l0ko
»
Report to moderator
Logged
ande
Owner
Titan
Posts: 2664
Cookies: 256
Re: What are .csproj files
«
Reply #1 on:
October 17, 2012, 07:38:35 pm »
".csproj" is a Visual Studio .NET C# Project file extension. This file will have information about the files included in that project, assemblies used in that project, project GUID and project version etc. This file is related to your project. It will be automatically generated when we create
".sln" is a structure for organizing projects in Visual Studio. It contains the state information for projects in .sln (text-based, shared) and .suo (binary, user-specific solution options) files. We can add multiple projects inside one solution.
Source:
http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/e8e9a55e-6e43-4c4d-93f6-5a89157b12f1
Report to moderator
Logged
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true
Print
Pages: [
1
]
EvilZone
»
Programming and Scripting
»
.NET Framework
»
What are .csproj files