Changeset 4958
- Timestamp:
- 11/27/10 09:37:34 (14 years ago)
- Location:
- branches/ClientManagement/HeuristicLab.Services.Authentication
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ClientManagement/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication.sln
r4732 r4958 10 10 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{D83C93B5-5DDE-4A66-A9B8-D7FD0A891ABB}" 11 11 EndProject 12 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestWebService", "TestWebService\TestWebService.csproj", "{01C496AF-00BE-4C51-9AA1-A9EBBE780003}" 13 EndProject 14 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{762DA386-BCEE-4788-A676-A7883FBA3D28}" 15 ProjectSection(SolutionItems) = preProject 16 HeuristicLab.Services.Authentication.vsmdi = HeuristicLab.Services.Authentication.vsmdi 17 Local.testsettings = Local.testsettings 18 TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings 19 EndProjectSection 20 EndProject 12 21 Global 22 GlobalSection(TestCaseManagementSettings) = postSolution 23 CategoryFile = HeuristicLab.Services.Authentication.vsmdi 24 EndGlobalSection 13 25 GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 26 Debug|Any CPU = Debug|Any CPU … … 60 72 {D83C93B5-5DDE-4A66-A9B8-D7FD0A891ABB}.Release|x86.ActiveCfg = Release|x86 61 73 {D83C93B5-5DDE-4A66-A9B8-D7FD0A891ABB}.Release|x86.Build.0 = Release|x86 74 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 75 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Any CPU.Build.0 = Debug|Any CPU 76 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 77 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 78 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|x86.ActiveCfg = Debug|Any CPU 79 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Any CPU.ActiveCfg = Release|Any CPU 80 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Any CPU.Build.0 = Release|Any CPU 81 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 82 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Mixed Platforms.Build.0 = Release|Any CPU 83 {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|x86.ActiveCfg = Release|Any CPU 62 84 EndGlobalSection 63 85 GlobalSection(SolutionProperties) = preSolution -
branches/ClientManagement/HeuristicLab.Services.Authentication/Test/Program.cs
r4953 r4958 17 17 DA.ClientManagmentDataContext dc = new DA.ClientManagmentDataContext(); 18 18 19 if (dc.DatabaseExists())20 {21 Console.WriteLine("DB exsits");22 dc.DeleteDatabase();23 dc.SubmitChanges();24 Console.WriteLine("DB deleted");25 }26 Console.WriteLine("DB create");27 dc.CreateDatabase();28 dc.SubmitChanges();29 Console.WriteLine("Finished");19 //if (dc.DatabaseExists()) 20 //{ 21 // Console.WriteLine("DB exsits"); 22 // dc.DeleteDatabase(); 23 // dc.SubmitChanges(); 24 // Console.WriteLine("DB deleted"); 25 //} 26 //Console.WriteLine("DB create"); 27 //dc.CreateDatabase(); 28 //dc.SubmitChanges(); 29 //Console.WriteLine("Finished"); 30 30 31 31 ClientService cs = new ClientService(); -
branches/ClientManagement/HeuristicLab.Services.Authentication/TestWebService/TestWebService.csproj
r4953 r4958 7 7 </ProductVersion> 8 8 <SchemaVersion>2.0</SchemaVersion> 9 <ProjectGuid> 741f1630-a465-47ad-979b-0a15847bd4bd</ProjectGuid>9 <ProjectGuid>{01C496AF-00BE-4C51-9AA1-A9EBBE780003}</ProjectGuid> 10 10 <OutputType>Library</OutputType> 11 11 <AppDesignerFolder>Properties</AppDesignerFolder> … … 34 34 </PropertyGroup> 35 35 <ItemGroup> 36 <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> 36 37 <Reference Include="System" /> 37 38 <Reference Include="System.Core"> … … 46 47 <ItemGroup> 47 48 <Compile Include="Properties\AssemblyInfo.cs" /> 49 <Compile Include="TestWebServiec.cs" /> 50 </ItemGroup> 51 <ItemGroup> 52 <ProjectReference Include="..\HeuristicLab.Services.Authentication\HeuristicLab.Services.Authentication.csproj"> 53 <Project>{ED8DC6E8-57C6-49E0-8CDF-25703AC52350}</Project> 54 <Name>HeuristicLab.Services.Authentication</Name> 55 </ProjectReference> 48 56 </ItemGroup> 49 57 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset
for help on using the changeset viewer.