From cec67948aac5d5d3dffcfe2e5beb93996b61d5b3 Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Thu, 21 Dec 2006 20:13:21 +0000 Subject: [PATCH 1/1] Prepping new SP library. --- Shibboleth.sln | 18 +++-- shibsp/.gitignore | 1 + shibsp/shibsp.vcproj | 203 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 216 insertions(+), 6 deletions(-) create mode 100644 shibsp/.gitignore create mode 100644 shibsp/shibsp.vcproj diff --git a/Shibboleth.sln b/Shibboleth.sln index 9650bbd..b22cf89 100644 --- a/Shibboleth.sln +++ b/Shibboleth.sln @@ -91,6 +91,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Utilities", "Utilities", "{ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "odbc-store", "odbc-store\odbc-store.vcproj", "{666A63A7-983F-4C19-8411-207F24305197}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shibsp", "shibsp\shibsp.vcproj", "{81F0F7A6-DC36-46EF-957F-F9E81D4403F6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -165,24 +167,28 @@ Global {666A63A7-983F-4C19-8411-207F24305197}.Debug|Win32.Build.0 = Debug|Win32 {666A63A7-983F-4C19-8411-207F24305197}.Release|Win32.ActiveCfg = Release|Win32 {666A63A7-983F-4C19-8411-207F24305197}.Release|Win32.Build.0 = Release|Win32 + {81F0F7A6-DC36-46EF-957F-F9E81D4403F6}.Debug|Win32.ActiveCfg = Debug|Win32 + {81F0F7A6-DC36-46EF-957F-F9E81D4403F6}.Debug|Win32.Build.0 = Debug|Win32 + {81F0F7A6-DC36-46EF-957F-F9E81D4403F6}.Release|Win32.ActiveCfg = Release|Win32 + {81F0F7A6-DC36-46EF-957F-F9E81D4403F6}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {87C25D4E-8D19-4513-B0BA-BC668BC2DEE3} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} {D243B43E-728E-4F32-BDFF-B3A897037C6D} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} {68E9568B-476C-4289-B93C-893432378ADC} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} - {B44C0852-83B8-4FB2-A86E-097C9C8256D0} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} {1396D80A-8672-4224-9B02-95F3F4207CDB} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} - {D341DCD8-7DCD-43A2-8559-C07DAB838711} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} - {DAC7FB99-038A-45C9-A27C-21B6C8D4CD1E} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} + {B44C0852-83B8-4FB2-A86E-097C9C8256D0} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} + {87C25D4E-8D19-4513-B0BA-BC668BC2DEE3} = {26BA8F84-6E42-41FA-9B13-5D3F4B5B2050} {54671467-CA4D-4BA3-9A27-15ED5576143D} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} {68E46D06-6B91-4C59-A700-78DD4D4C420B} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} + {DAC7FB99-038A-45C9-A27C-21B6C8D4CD1E} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} + {D341DCD8-7DCD-43A2-8559-C07DAB838711} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} {666A63A7-983F-4C19-8411-207F24305197} = {96AE4FC9-45EF-4C18-9F3B-EDA439E26E4C} - {16E70C47-789E-43D5-AFDF-964D386C3CB5} = {FED80230-119E-4B2F-9F53-D2660A5F022B} {67AF22A3-C26E-40BE-B0CA-2ABEE5123763} = {FED80230-119E-4B2F-9F53-D2660A5F022B} - {B3F1E899-86F9-4D3A-8026-B57D1A5B90B1} = {FED80230-119E-4B2F-9F53-D2660A5F022B} {4D02F36E-D2CD-4FD1-AC50-2941E27BB3FB} = {FED80230-119E-4B2F-9F53-D2660A5F022B} + {B3F1E899-86F9-4D3A-8026-B57D1A5B90B1} = {FED80230-119E-4B2F-9F53-D2660A5F022B} + {16E70C47-789E-43D5-AFDF-964D386C3CB5} = {FED80230-119E-4B2F-9F53-D2660A5F022B} EndGlobalSection EndGlobal diff --git a/shibsp/.gitignore b/shibsp/.gitignore new file mode 100644 index 0000000..d7a4d4d --- /dev/null +++ b/shibsp/.gitignore @@ -0,0 +1 @@ +/*.user diff --git a/shibsp/shibsp.vcproj b/shibsp/shibsp.vcproj new file mode 100644 index 0000000..ba8a96d --- /dev/null +++ b/shibsp/shibsp.vcproj @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.1.4