Skip to content

Commit 4bf4ef8

Browse files
author
Chris Martinez
committed
Renamed project with the singular name "Sample" instead of "Samples"
1 parent f648310 commit 4bf4ef8

File tree

11 files changed

+8
-8
lines changed

11 files changed

+8
-8
lines changed

ApiVersioningWithSamples.sln

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdvancedODataWebApiSample",
106106
EndProject
107107
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ByNamespaceWebApiSample", "samples\webapi\ByNamespaceWebApiSample\ByNamespaceWebApiSample.csproj", "{A02A4245-3AEB-4549-9037-D89DFDC7E74D}"
108108
EndProject
109-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ConventionsSamples", "samples\aspnetcore\ConventionsSamples\ConventionsSamples.xproj", "{1EFC221F-35CF-4B55-BD59-240D5B808E14}"
110-
EndProject
111109
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConventionsWebApiSample", "samples\webapi\ConventionsWebApiSample\ConventionsWebApiSample.csproj", "{C1F89961-7134-4D97-BA3A-2693FD1CBF4E}"
112110
EndProject
113111
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConventionsODataWebApiSample", "samples\webapi\ConventionsODataWebApiSample\ConventionsODataWebApiSample.csproj", "{9A22600C-7768-4D16-B67D-514F55942FAF}"
114112
EndProject
113+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ConventionsSample", "samples\aspnetcore\ConventionsSample\ConventionsSample.xproj", "{1EFC221F-35CF-4B55-BD59-240D5B808E14}"
114+
EndProject
115115
Global
116116
GlobalSection(SolutionConfigurationPlatforms) = preSolution
117117
Debug|Any CPU = Debug|Any CPU
@@ -162,10 +162,6 @@ Global
162162
{A02A4245-3AEB-4549-9037-D89DFDC7E74D}.Debug|Any CPU.Build.0 = Debug|Any CPU
163163
{A02A4245-3AEB-4549-9037-D89DFDC7E74D}.Release|Any CPU.ActiveCfg = Release|Any CPU
164164
{A02A4245-3AEB-4549-9037-D89DFDC7E74D}.Release|Any CPU.Build.0 = Release|Any CPU
165-
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
166-
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
167-
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
168-
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Release|Any CPU.Build.0 = Release|Any CPU
169165
{C1F89961-7134-4D97-BA3A-2693FD1CBF4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
170166
{C1F89961-7134-4D97-BA3A-2693FD1CBF4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
171167
{C1F89961-7134-4D97-BA3A-2693FD1CBF4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -174,6 +170,10 @@ Global
174170
{9A22600C-7768-4D16-B67D-514F55942FAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
175171
{9A22600C-7768-4D16-B67D-514F55942FAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
176172
{9A22600C-7768-4D16-B67D-514F55942FAF}.Release|Any CPU.Build.0 = Release|Any CPU
173+
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
174+
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Debug|Any CPU.Build.0 = Debug|Any CPU
175+
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Release|Any CPU.ActiveCfg = Release|Any CPU
176+
{1EFC221F-35CF-4B55-BD59-240D5B808E14}.Release|Any CPU.Build.0 = Release|Any CPU
177177
EndGlobalSection
178178
GlobalSection(SolutionProperties) = preSolution
179179
HideSolutionNode = FALSE
@@ -197,8 +197,8 @@ Global
197197
{D87E54CC-C2D6-4AE5-806D-AE825B051C66} = {0987757E-4D09-4523-B9C9-65B1E8832AA1}
198198
{E496EED0-F8C9-4FE9-83E6-75E47A3C41A1} = {F446ED94-368F-4F67-913B-16E82CA80DFC}
199199
{A02A4245-3AEB-4549-9037-D89DFDC7E74D} = {F446ED94-368F-4F67-913B-16E82CA80DFC}
200-
{1EFC221F-35CF-4B55-BD59-240D5B808E14} = {900DD210-8500-4D89-A05D-C9526935A719}
201200
{C1F89961-7134-4D97-BA3A-2693FD1CBF4E} = {F446ED94-368F-4F67-913B-16E82CA80DFC}
202201
{9A22600C-7768-4D16-B67D-514F55942FAF} = {F446ED94-368F-4F67-913B-16E82CA80DFC}
202+
{1EFC221F-35CF-4B55-BD59-240D5B808E14} = {900DD210-8500-4D89-A05D-C9526935A719}
203203
EndGlobalSection
204204
EndGlobal

samples/aspnetcore/ConventionsSamples/Controllers/HelloWorldController.cs renamed to samples/aspnetcore/ConventionsSample/Controllers/HelloWorldController.cs

File renamed without changes.

samples/aspnetcore/ConventionsSamples/Controllers/Values2Controller.cs renamed to samples/aspnetcore/ConventionsSample/Controllers/Values2Controller.cs

File renamed without changes.

samples/aspnetcore/ConventionsSamples/Controllers/ValuesController.cs renamed to samples/aspnetcore/ConventionsSample/Controllers/ValuesController.cs

File renamed without changes.

samples/aspnetcore/ConventionsSamples/ConventionsSamples.xproj renamed to samples/aspnetcore/ConventionsSample/ConventionsSample.xproj

File renamed without changes.
File renamed without changes.

samples/aspnetcore/ConventionsSamples/Properties/launchSettings.json renamed to samples/aspnetcore/ConventionsSample/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"ASPNETCORE_ENVIRONMENT": "Development"
1717
}
1818
},
19-
"ConventionsSamples": {
19+
"ConventionsSample": {
2020
"commandName": "Project",
2121
"launchBrowser": true,
2222
"launchUrl": "http://localhost:5000/api/values",
File renamed without changes.

samples/aspnetcore/ConventionsSamples/appsettings.json renamed to samples/aspnetcore/ConventionsSample/appsettings.json

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)