Client/SharpDisplayClient.csproj
author sl
Tue, 12 Aug 2014 20:55:50 +0200
changeset 18 7acec5059fa6
child 20 e3d394dd0388
permissions -rw-r--r--
Adding our client implementation. Moving server into its own folder.
sl@18
     1
<?xml version="1.0" encoding="utf-8"?>
sl@18
     2
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
sl@18
     3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
sl@18
     4
  <PropertyGroup>
sl@18
     5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
sl@18
     6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
sl@18
     7
    <ProjectGuid>{7EE64074-8CDB-4448-B40C-81B75D6B31CD}</ProjectGuid>
sl@18
     8
    <OutputType>WinExe</OutputType>
sl@18
     9
    <AppDesignerFolder>Properties</AppDesignerFolder>
sl@18
    10
    <RootNamespace>SharpDisplayClient</RootNamespace>
sl@18
    11
    <AssemblyName>SharpDisplayClient</AssemblyName>
sl@18
    12
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
sl@18
    13
    <FileAlignment>512</FileAlignment>
sl@18
    14
  </PropertyGroup>
sl@18
    15
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
sl@18
    16
    <PlatformTarget>AnyCPU</PlatformTarget>
sl@18
    17
    <DebugSymbols>true</DebugSymbols>
sl@18
    18
    <DebugType>full</DebugType>
sl@18
    19
    <Optimize>false</Optimize>
sl@18
    20
    <OutputPath>bin\Debug\</OutputPath>
sl@18
    21
    <DefineConstants>DEBUG;TRACE</DefineConstants>
sl@18
    22
    <ErrorReport>prompt</ErrorReport>
sl@18
    23
    <WarningLevel>4</WarningLevel>
sl@18
    24
  </PropertyGroup>
sl@18
    25
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
sl@18
    26
    <PlatformTarget>AnyCPU</PlatformTarget>
sl@18
    27
    <DebugType>pdbonly</DebugType>
sl@18
    28
    <Optimize>true</Optimize>
sl@18
    29
    <OutputPath>bin\Release\</OutputPath>
sl@18
    30
    <DefineConstants>TRACE</DefineConstants>
sl@18
    31
    <ErrorReport>prompt</ErrorReport>
sl@18
    32
    <WarningLevel>4</WarningLevel>
sl@18
    33
  </PropertyGroup>
sl@18
    34
  <ItemGroup>
sl@18
    35
    <Reference Include="System" />
sl@18
    36
    <Reference Include="System.Core" />
sl@18
    37
    <Reference Include="System.ServiceModel" />
sl@18
    38
    <Reference Include="System.Xml.Linq" />
sl@18
    39
    <Reference Include="System.Data.DataSetExtensions" />
sl@18
    40
    <Reference Include="Microsoft.CSharp" />
sl@18
    41
    <Reference Include="System.Data" />
sl@18
    42
    <Reference Include="System.Deployment" />
sl@18
    43
    <Reference Include="System.Drawing" />
sl@18
    44
    <Reference Include="System.Windows.Forms" />
sl@18
    45
    <Reference Include="System.Xml" />
sl@18
    46
  </ItemGroup>
sl@18
    47
  <ItemGroup>
sl@18
    48
    <Compile Include="MainForm.cs">
sl@18
    49
      <SubType>Form</SubType>
sl@18
    50
    </Compile>
sl@18
    51
    <Compile Include="MainForm.Designer.cs">
sl@18
    52
      <DependentUpon>MainForm.cs</DependentUpon>
sl@18
    53
    </Compile>
sl@18
    54
    <Compile Include="Program.cs" />
sl@18
    55
    <Compile Include="Properties\AssemblyInfo.cs" />
sl@18
    56
    <EmbeddedResource Include="MainForm.resx">
sl@18
    57
      <DependentUpon>MainForm.cs</DependentUpon>
sl@18
    58
    </EmbeddedResource>
sl@18
    59
    <EmbeddedResource Include="Properties\Resources.resx">
sl@18
    60
      <Generator>ResXFileCodeGenerator</Generator>
sl@18
    61
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
sl@18
    62
      <SubType>Designer</SubType>
sl@18
    63
    </EmbeddedResource>
sl@18
    64
    <Compile Include="Properties\Resources.Designer.cs">
sl@18
    65
      <AutoGen>True</AutoGen>
sl@18
    66
      <DependentUpon>Resources.resx</DependentUpon>
sl@18
    67
    </Compile>
sl@18
    68
    <None Include="Properties\Settings.settings">
sl@18
    69
      <Generator>SettingsSingleFileGenerator</Generator>
sl@18
    70
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
sl@18
    71
    </None>
sl@18
    72
    <Compile Include="Properties\Settings.Designer.cs">
sl@18
    73
      <AutoGen>True</AutoGen>
sl@18
    74
      <DependentUpon>Settings.settings</DependentUpon>
sl@18
    75
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
sl@18
    76
    </Compile>
sl@18
    77
  </ItemGroup>
sl@18
    78
  <ItemGroup>
sl@18
    79
    <None Include="App.config" />
sl@18
    80
  </ItemGroup>
sl@18
    81
  <ItemGroup>
sl@18
    82
    <ProjectReference Include="..\Server\SharpDisplayManager.csproj">
sl@18
    83
      <Project>{1da8c1b3-18c5-4e74-be4e-0b0e15fbaf49}</Project>
sl@18
    84
      <Name>SharpDisplayManager</Name>
sl@18
    85
    </ProjectReference>
sl@18
    86
  </ItemGroup>
sl@18
    87
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
sl@18
    88
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
sl@18
    89
       Other similar extension points exist, see Microsoft.Common.targets.
sl@18
    90
  <Target Name="BeforeBuild">
sl@18
    91
  </Target>
sl@18
    92
  <Target Name="AfterBuild">
sl@18
    93
  </Target>
sl@18
    94
  -->
sl@18
    95
</Project>