Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 1.93 KB

files-created-for-clr-projects.md

File metadata and controls

22 lines (20 loc) · 1.93 KB
descriptiontitlems.datehelpviewer_keywordsms.assetid
Learn more about: Files Created for CLR Projects
Files Created for CLR Projects
11/04/2016
Visual Studio C++ projects, CLR programming
.NET applications, C++
59ae9020-5f26-4ad0-bbdd-97c2e2023a20

Files Created for CLR Projects

When you use Visual C++ templates to create your projects, several files are created, depending on which template you use. The following table lists all the files that are created by project templates for .NET Framework projects.

File nameFile description
AssemblyInfo.cppThe file that contains information (that is, attributes, files, resources, types, versioning information, signing information, and so on) for modifying the project's assembly metadata. For more information see Assembly Concepts.
projname.asmxA text file that references managed classes that encapsulate the functionality of the XML Web service.
projname.cppThe main source file and entry point into the application that Visual Studio created for you. Identifies the project .dll file and the project namespace. Provide your own code in this file.
projname.vsdiscoAn XML deployment file containing links to other resources that describe the XML Web service.
projname.hThe main include file for the project, which contains all declarations, global symbols, and #include directives for other header files.
projname.slnThe solution file used within the development environment to organize all elements of your project into a single solution.
projname.suoThe solution options file used within the development environment.
projname.vcxprojThe project file used within the development environment that stores the information specific to this project.
ReadMe.txtA file describing each file in your project using the actual filenames created by the template.
close