Skip to content

Commit 7580c7a

Browse files
authored
Merge pull request #6244 from MicrosoftDocs/master637444298127915121
For protected CLA branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 44f9a1f + b20ad73 commit 7580c7a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/ide/creating-solutions-and-projects.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ If you have a collection of code source files, you can easily add them to a proj
5555

5656
If you have a file that applies to multiple projects, such as a readme file for the solution, or other files that logically belong at the solution level rather than under a specific project, then you can add them to the solution itself. To add an item to a solution, on the context (right-click) menu of the solution node in **Solution Explorer**, select **Add** > **New Item**, or **Add** > **Existing Item**.
5757

58+
> [!TIP]
59+
> A solution file is a structure for organizing projects in Visual Studio. It contains the state of that information in two files: an *.sln* (text-based, shared) file, and an *.suo* (binary, hidden, user-specific solution options) file. Thus, a solution isn't something that should be copied and renamed; instead, it's best to create a new solution and then add existing items to it.
60+
5861
## Create a .NET project that targets a specific version of the .NET Framework
5962

6063
When you create a .NET Framework project, you can specify a specific version of the .NET Framework that you want the project to use. (When you create a .NET Core project, you don't specify a framework version.)
@@ -124,7 +127,7 @@ To create a temporary project, first go to **Tools** > **Options** > **Projects
124127

125128
## Delete a solution, project, or item
126129

127-
You can remove a solution and its contents within Visual Studio, but that only removes them from the current solution or project.
130+
You can use the right-click context menu to either delete or remove solutions, projects, or items in Visual Studio, but that only removes them from the current solution or project.
128131

129132
To permanently delete a solution or other components from your system, use **File Explorer** in Windows to delete the folder that contains the *.sln* and *.suo* solution files. (Before you delete a solution, you might want to back up your projects and files in case you need them again.)
130133

0 commit comments

Comments
 (0)