Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientManagement/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication.csproj @ 4728

Last change on this file since 4728 was 4728, checked in by fruehrli, 13 years ago

#1197
removed obsulate signings

File size: 5.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>
7    </ProductVersion>
8    <SchemaVersion>2.0</SchemaVersion>
9    <ProjectGuid>{ED8DC6E8-57C6-49E0-8CDF-25703AC52350}</ProjectGuid>
10    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
11    <OutputType>Library</OutputType>
12    <AppDesignerFolder>Properties</AppDesignerFolder>
13    <RootNamespace>HeuristicLab.Services.Authentication</RootNamespace>
14    <AssemblyName>HeuristicLab.Services.Authentication</AssemblyName>
15    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>false</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>
39    </AssemblyOriginatorKeyFile>
40  </PropertyGroup>
41  <PropertyGroup>
42    <DelaySign>false</DelaySign>
43  </PropertyGroup>
44  <ItemGroup>
45    <Reference Include="Microsoft.CSharp" />
46    <Reference Include="System.Data.Linq" />
47    <Reference Include="System.Web.DynamicData" />
48    <Reference Include="System.Web.Entity" />
49    <Reference Include="System.Web.ApplicationServices" />
50    <Reference Include="System" />
51    <Reference Include="System.Configuration" />
52    <Reference Include="System.Core" />
53    <Reference Include="System.Data" />
54    <Reference Include="System.Drawing" />
55    <Reference Include="System.EnterpriseServices" />
56    <Reference Include="System.Runtime.Serialization" />
57    <Reference Include="System.ServiceModel" />
58    <Reference Include="System.ServiceModel.Web" />
59    <Reference Include="System.Web" />
60    <Reference Include="System.Web.Extensions" />
61    <Reference Include="System.Web.Services" />
62    <Reference Include="System.Xml" />
63    <Reference Include="System.Xml.Linq" />
64  </ItemGroup>
65  <ItemGroup>
66    <Content Include="Service1.svc" />
67    <Content Include="Web.config" />
68    <Content Include="Web.Debug.config">
69      <DependentUpon>Web.config</DependentUpon>
70    </Content>
71    <Content Include="Web.Release.config">
72      <DependentUpon>Web.config</DependentUpon>
73    </Content>
74  </ItemGroup>
75  <ItemGroup>
76    <Compile Include="Convert.cs" />
77    <Compile Include="Service1.svc.cs">
78      <DependentUpon>Service1.svc</DependentUpon>
79    </Compile>
80    <Compile Include="IService1.cs" />
81    <Compile Include="Properties\AssemblyInfo.cs" />
82  </ItemGroup>
83  <ItemGroup>
84    <Folder Include="App_Data\" />
85  </ItemGroup>
86  <ItemGroup>
87    <ProjectReference Include="..\HeuristicLab.Services.Authentication.DataAccess\HeuristicLab.Services.Authentication.DataAccess.csproj">
88      <Project>{AC7C2117-034E-4301-8A43-C869930D404E}</Project>
89      <Name>HeuristicLab.Services.Authentication.DataAccess</Name>
90    </ProjectReference>
91    <ProjectReference Include="..\HeuristicLab.Services.Authentication.DataTransfer\HeuristicLab.Services.Authentication.DataTransfer.csproj">
92      <Project>{73E5113E-A293-4384-8B16-3CE38F2CFDC9}</Project>
93      <Name>HeuristicLab.Services.Authentication.DataTransfer</Name>
94    </ProjectReference>
95  </ItemGroup>
96  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
97  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
98  <ProjectExtensions>
99    <VisualStudio>
100      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
101        <WebProjectProperties>
102          <UseIIS>False</UseIIS>
103          <AutoAssignPort>True</AutoAssignPort>
104          <DevelopmentServerPort>49170</DevelopmentServerPort>
105          <DevelopmentServerVPath>/</DevelopmentServerVPath>
106          <IISUrl>
107          </IISUrl>
108          <NTLMAuthentication>False</NTLMAuthentication>
109          <UseCustomServer>False</UseCustomServer>
110          <CustomServerUrl>
111          </CustomServerUrl>
112          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
113          <EnableWcfTestClientForSVCDefaultValue>True</EnableWcfTestClientForSVCDefaultValue>
114        </WebProjectProperties>
115      </FlavorProperties>
116    </VisualStudio>
117  </ProjectExtensions>
118  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
119       Other similar extension points exist, see Microsoft.Common.targets.
120  <Target Name="BeforeBuild">
121  </Target>
122  <Target Name="AfterBuild">
123  </Target>
124  -->
125</Project>
Note: See TracBrowser for help on using the repository browser.