diff --git a/CORS.sln b/CORS.sln
index 7af505a971..0d3ab28c1b 100644
--- a/CORS.sln
+++ b/CORS.sln
@@ -16,12 +16,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Cors", "sr
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Cors.Test", "test\Microsoft.AspNet.Cors.Test\Microsoft.AspNet.Cors.Test.xproj", "{F05BE96F-F869-4408-A480-96935B4835EE}"
EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{EEF80A8E-F334-4C66-9537-8D24D002149D}"
-EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "UseOptions", "samples\UseOptions\UseOptions.xproj", "{8DC90D0F-9660-42AD-BE08-4A7643A8F46E}"
-EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "UsePolicyBuilder", "samples\UsePolicyBuilder\UsePolicyBuilder.xproj", "{6916DB8A-0246-45F8-9C64-9B05556C1A5D}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -36,14 +30,6 @@ Global
{F05BE96F-F869-4408-A480-96935B4835EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F05BE96F-F869-4408-A480-96935B4835EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F05BE96F-F869-4408-A480-96935B4835EE}.Release|Any CPU.Build.0 = Release|Any CPU
- {8DC90D0F-9660-42AD-BE08-4A7643A8F46E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {8DC90D0F-9660-42AD-BE08-4A7643A8F46E}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {8DC90D0F-9660-42AD-BE08-4A7643A8F46E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {8DC90D0F-9660-42AD-BE08-4A7643A8F46E}.Release|Any CPU.Build.0 = Release|Any CPU
- {6916DB8A-0246-45F8-9C64-9B05556C1A5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {6916DB8A-0246-45F8-9C64-9B05556C1A5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {6916DB8A-0246-45F8-9C64-9B05556C1A5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {6916DB8A-0246-45F8-9C64-9B05556C1A5D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -51,7 +37,5 @@ Global
GlobalSection(NestedProjects) = preSolution
{41349FCD-D1C4-47A6-82D0-D16D00A8D59D} = {84FE6872-A610-4CEC-855F-A84CBF1F40FC}
{F05BE96F-F869-4408-A480-96935B4835EE} = {F32074C7-087C-46CC-A913-422BFD2D6E0A}
- {8DC90D0F-9660-42AD-BE08-4A7643A8F46E} = {EEF80A8E-F334-4C66-9537-8D24D002149D}
- {6916DB8A-0246-45F8-9C64-9B05556C1A5D} = {EEF80A8E-F334-4C66-9537-8D24D002149D}
EndGlobalSection
EndGlobal
diff --git a/samples/UseOptions/Project_Readme.html b/samples/UseOptions/Project_Readme.html
deleted file mode 100644
index b693be4eba..0000000000
--- a/samples/UseOptions/Project_Readme.html
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
- Welcome to ASP.NET 5
-
-
-
-
-
-
-
-
-
This application consists of:
-
- - Sample pages using ASP.NET MVC 6
- - Grunt and Bower for managing client-side resources
- - Theming using Bootstrap
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/UseOptions/Startup.cs b/samples/UseOptions/Startup.cs
deleted file mode 100644
index c2e8299fc0..0000000000
--- a/samples/UseOptions/Startup.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using Microsoft.AspNet.Builder;
-using Microsoft.AspNet.Http;
-using Microsoft.Extensions.DependencyInjection;
-
-namespace UseOptions
-{
- public class Startup
- {
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddCors(options =>
- options.AddPolicy("allowSingleOrigin", builder => builder.WithOrigins("http://example.com")));
- }
-
- public void Configure(IApplicationBuilder app)
- {
- app.UseCors("allowSingleOrigin");
- }
- }
-}
diff --git a/samples/UseOptions/UseOptions.xproj b/samples/UseOptions/UseOptions.xproj
deleted file mode 100644
index 93e6c00701..0000000000
--- a/samples/UseOptions/UseOptions.xproj
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- 14.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
-
-
- 8dc90d0f-9660-42ad-be08-4a7643a8f46e
- ..\..\artifacts\obj\$(MSBuildProjectName)
- ..\..\artifacts\bin\$(MSBuildProjectName)\
-
-
- 2.0
- 5442
-
-
-
\ No newline at end of file
diff --git a/samples/UseOptions/project.json b/samples/UseOptions/project.json
deleted file mode 100644
index 2733f72e2f..0000000000
--- a/samples/UseOptions/project.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "webroot": "wwwroot",
- "version": "1.0.0-*",
- "dependencies": {
- "Microsoft.AspNet.Cors": "6.0.0-*",
- "Microsoft.AspNet.Diagnostics": "1.0.0-*",
- "Microsoft.AspNet.Server.IIS": "1.0.0-*",
- "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
- "Microsoft.Extensions.Logging.Console": "1.0.0-*"
- },
- "commands": {
- "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
- },
- "frameworks": {
- "dnx451": {},
- "dnxcore50": {}
- },
- "publishExclude": [
- "node_modules",
- "bower_components",
- "**.kproj",
- "**.user",
- "**.vspscc"
- ],
- "exclude": [
- "wwwroot",
- "node_modules",
- "bower_components"
- ]
-}
\ No newline at end of file
diff --git a/samples/UsePolicyBuilder/Project_Readme.html b/samples/UsePolicyBuilder/Project_Readme.html
deleted file mode 100644
index b693be4eba..0000000000
--- a/samples/UsePolicyBuilder/Project_Readme.html
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
- Welcome to ASP.NET 5
-
-
-
-
-
-
-
-
-
This application consists of:
-
- - Sample pages using ASP.NET MVC 6
- - Grunt and Bower for managing client-side resources
- - Theming using Bootstrap
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/UsePolicyBuilder/Startup.cs b/samples/UsePolicyBuilder/Startup.cs
deleted file mode 100644
index 539f9a808e..0000000000
--- a/samples/UsePolicyBuilder/Startup.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using Microsoft.AspNet.Builder;
-using Microsoft.AspNet.Http;
-using Microsoft.Extensions.DependencyInjection;
-
-namespace UsePolicy
-{
- public class Startup
- {
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddCors();
- }
-
- public void Configure(IApplicationBuilder app)
- {
- app.UseCors(policy => policy.WithOrigins("http://example.com"));
- }
- }
-}
diff --git a/samples/UsePolicyBuilder/UsePolicyBuilder.xproj b/samples/UsePolicyBuilder/UsePolicyBuilder.xproj
deleted file mode 100644
index f75668321b..0000000000
--- a/samples/UsePolicyBuilder/UsePolicyBuilder.xproj
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- 14.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
-
-
- 6916db8a-0246-45f8-9c64-9b05556c1a5d
- ..\..\artifacts\obj\$(MSBuildProjectName)
- ..\..\artifacts\bin\$(MSBuildProjectName)\
-
-
- 2.0
- 12497
-
-
-
\ No newline at end of file
diff --git a/samples/UsePolicyBuilder/project.json b/samples/UsePolicyBuilder/project.json
deleted file mode 100644
index 2733f72e2f..0000000000
--- a/samples/UsePolicyBuilder/project.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "webroot": "wwwroot",
- "version": "1.0.0-*",
- "dependencies": {
- "Microsoft.AspNet.Cors": "6.0.0-*",
- "Microsoft.AspNet.Diagnostics": "1.0.0-*",
- "Microsoft.AspNet.Server.IIS": "1.0.0-*",
- "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
- "Microsoft.Extensions.Logging.Console": "1.0.0-*"
- },
- "commands": {
- "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
- },
- "frameworks": {
- "dnx451": {},
- "dnxcore50": {}
- },
- "publishExclude": [
- "node_modules",
- "bower_components",
- "**.kproj",
- "**.user",
- "**.vspscc"
- ],
- "exclude": [
- "wwwroot",
- "node_modules",
- "bower_components"
- ]
-}
\ No newline at end of file