Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.ContactServer/DistributedGA.ContactServer.csproj @ 13971

Last change on this file since 13971 was 13943, checked in by thasling, 8 years ago

#2615:
implemented lock for timers, because if elapsed-method takes longer than the timer to elapse again, the method is called by another thread conccurently

File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProductVersion>8.0.50727</ProductVersion>
8    <SchemaVersion>2.0</SchemaVersion>
9    <ProjectGuid>{554DAD06-0BF9-4908-BD62-D5FDC46A8B74}</ProjectGuid>
10    <OutputType>Library</OutputType>
11    <AppDesignerFolder>Properties</AppDesignerFolder>
12    <RootNamespace>DistributedGA.ContactServer</RootNamespace>
13    <AssemblyName>DistributedGA.ContactServer</AssemblyName>
14    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15    <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
16    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
17    <WcfConfigValidationEnabled>True</WcfConfigValidationEnabled>
18    <XsdCodeGenEnabled>True</XsdCodeGenEnabled>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <PropertyGroup>
38    <StartupObject>
39    </StartupObject>
40  </PropertyGroup>
41  <ItemGroup>
42    <Reference Include="Microsoft.CSharp" />
43    <Reference Include="System" />
44    <Reference Include="System.Core" />
45    <Reference Include="System.Data" />
46    <Reference Include="System.Runtime.Serialization" />
47    <Reference Include="System.ServiceModel" />
48    <Reference Include="System.Xml" />
49    <Reference Include="System.Xml.Linq" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="ContactServiceImpl.cs" />
53    <Compile Include="IContactService.cs" />
54    <Compile Include="Properties\AssemblyInfo.cs" />
55  </ItemGroup>
56  <ItemGroup>
57    <None Include="App.config">
58      <SubType>Designer</SubType>
59    </None>
60  </ItemGroup>
61  <ItemGroup>
62    <ProjectReference Include="..\DistributedGA.Core\DistributedGA.Core.csproj">
63      <Project>{02e73f42-bdc9-4a7a-b74f-5879def27320}</Project>
64      <Name>DistributedGA.Core</Name>
65    </ProjectReference>
66  </ItemGroup>
67  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
68  <PropertyGroup>
69    <VSToolsPath Condition="'$(VSToolsPath)' == '' and '$(VisualStudioVersion)' != '' and '$(VisualStudioVersion)' != '11.0'">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
70    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio</VSToolsPath>
71    <WcfServiceModelTargetPath>$(VSToolsPath)\WCF</WcfServiceModelTargetPath>
72  </PropertyGroup>
73  <Import Project="$(WcfServiceModelTargetPath)\Microsoft.VisualStudio.ServiceModel.targets" />
74  <ProjectExtensions>
75    <VisualStudio>
76      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
77        <WcfProjectProperties>
78          <AutoStart>True</AutoStart>
79        </WcfProjectProperties>
80      </FlavorProperties>
81    </VisualStudio>
82  </ProjectExtensions>
83  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
84       Other similar extension points exist, see Microsoft.Common.targets.
85  <Target Name="BeforeBuild">
86  </Target>
87  <Target Name="AfterBuild">
88  </Target>
89  -->
90</Project>
Note: See TracBrowser for help on using the repository browser.