Clients/Message/SharpDisplayClientMessage.csproj
author StephaneLenclud
Thu, 28 Jul 2016 19:32:40 +0200
changeset 225 6ccaa430aa23
child 230 8c5cf2228e9a
permissions -rw-r--r--
Adding support for Display Messages.
StephaneLenclud@225
     1
<?xml version="1.0" encoding="utf-8"?>
StephaneLenclud@225
     2
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
StephaneLenclud@225
     3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
StephaneLenclud@225
     4
  <PropertyGroup>
StephaneLenclud@225
     5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
StephaneLenclud@225
     6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
StephaneLenclud@225
     7
    <ProjectGuid>{D9AAD299-E97F-47E0-8E92-110F49F2B89C}</ProjectGuid>
StephaneLenclud@225
     8
    <OutputType>WinExe</OutputType>
StephaneLenclud@225
     9
    <AppDesignerFolder>Properties</AppDesignerFolder>
StephaneLenclud@225
    10
    <RootNamespace>SharpDisplayClientMessage</RootNamespace>
StephaneLenclud@225
    11
    <AssemblyName>SharpDisplayClientMessage</AssemblyName>
StephaneLenclud@225
    12
    <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
StephaneLenclud@225
    13
    <FileAlignment>512</FileAlignment>
StephaneLenclud@225
    14
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
StephaneLenclud@225
    15
  </PropertyGroup>
StephaneLenclud@225
    16
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
StephaneLenclud@225
    17
    <PlatformTarget>AnyCPU</PlatformTarget>
StephaneLenclud@225
    18
    <DebugSymbols>true</DebugSymbols>
StephaneLenclud@225
    19
    <DebugType>full</DebugType>
StephaneLenclud@225
    20
    <Optimize>false</Optimize>
StephaneLenclud@225
    21
    <OutputPath>bin\Debug\</OutputPath>
StephaneLenclud@225
    22
    <DefineConstants>DEBUG;TRACE</DefineConstants>
StephaneLenclud@225
    23
    <ErrorReport>prompt</ErrorReport>
StephaneLenclud@225
    24
    <WarningLevel>4</WarningLevel>
StephaneLenclud@225
    25
  </PropertyGroup>
StephaneLenclud@225
    26
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
StephaneLenclud@225
    27
    <PlatformTarget>AnyCPU</PlatformTarget>
StephaneLenclud@225
    28
    <DebugType>pdbonly</DebugType>
StephaneLenclud@225
    29
    <Optimize>true</Optimize>
StephaneLenclud@225
    30
    <OutputPath>bin\Release\</OutputPath>
StephaneLenclud@225
    31
    <DefineConstants>TRACE</DefineConstants>
StephaneLenclud@225
    32
    <ErrorReport>prompt</ErrorReport>
StephaneLenclud@225
    33
    <WarningLevel>4</WarningLevel>
StephaneLenclud@225
    34
  </PropertyGroup>
StephaneLenclud@225
    35
  <ItemGroup>
StephaneLenclud@225
    36
    <Reference Include="SharpLibDisplay, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
StephaneLenclud@225
    37
      <HintPath>..\..\packages\SharpLibDisplay.0.2.5\lib\net40\SharpLibDisplay.dll</HintPath>
StephaneLenclud@225
    38
      <Private>True</Private>
StephaneLenclud@225
    39
    </Reference>
StephaneLenclud@225
    40
    <Reference Include="System" />
StephaneLenclud@225
    41
    <Reference Include="System.Core" />
StephaneLenclud@225
    42
    <Reference Include="System.Xml.Linq" />
StephaneLenclud@225
    43
    <Reference Include="System.Data.DataSetExtensions" />
StephaneLenclud@225
    44
    <Reference Include="Microsoft.CSharp" />
StephaneLenclud@225
    45
    <Reference Include="System.Data" />
StephaneLenclud@225
    46
    <Reference Include="System.Deployment" />
StephaneLenclud@225
    47
    <Reference Include="System.Drawing" />
StephaneLenclud@225
    48
    <Reference Include="System.Net.Http" />
StephaneLenclud@225
    49
    <Reference Include="System.Windows.Forms" />
StephaneLenclud@225
    50
    <Reference Include="System.Xml" />
StephaneLenclud@225
    51
  </ItemGroup>
StephaneLenclud@225
    52
  <ItemGroup>
StephaneLenclud@225
    53
    <Compile Include="FormClientMessage.cs">
StephaneLenclud@225
    54
      <SubType>Form</SubType>
StephaneLenclud@225
    55
    </Compile>
StephaneLenclud@225
    56
    <Compile Include="FormClientMessage.Designer.cs">
StephaneLenclud@225
    57
      <DependentUpon>FormClientMessage.cs</DependentUpon>
StephaneLenclud@225
    58
    </Compile>
StephaneLenclud@225
    59
    <Compile Include="Program.cs" />
StephaneLenclud@225
    60
    <Compile Include="Properties\AssemblyInfo.cs" />
StephaneLenclud@225
    61
    <EmbeddedResource Include="FormClientMessage.resx">
StephaneLenclud@225
    62
      <DependentUpon>FormClientMessage.cs</DependentUpon>
StephaneLenclud@225
    63
    </EmbeddedResource>
StephaneLenclud@225
    64
    <EmbeddedResource Include="Properties\Resources.resx">
StephaneLenclud@225
    65
      <Generator>ResXFileCodeGenerator</Generator>
StephaneLenclud@225
    66
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
StephaneLenclud@225
    67
      <SubType>Designer</SubType>
StephaneLenclud@225
    68
    </EmbeddedResource>
StephaneLenclud@225
    69
    <Compile Include="Properties\Resources.Designer.cs">
StephaneLenclud@225
    70
      <AutoGen>True</AutoGen>
StephaneLenclud@225
    71
      <DependentUpon>Resources.resx</DependentUpon>
StephaneLenclud@225
    72
    </Compile>
StephaneLenclud@225
    73
    <None Include="packages.config" />
StephaneLenclud@225
    74
    <None Include="Properties\Settings.settings">
StephaneLenclud@225
    75
      <Generator>SettingsSingleFileGenerator</Generator>
StephaneLenclud@225
    76
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
StephaneLenclud@225
    77
    </None>
StephaneLenclud@225
    78
    <Compile Include="Properties\Settings.Designer.cs">
StephaneLenclud@225
    79
      <AutoGen>True</AutoGen>
StephaneLenclud@225
    80
      <DependentUpon>Settings.settings</DependentUpon>
StephaneLenclud@225
    81
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
StephaneLenclud@225
    82
    </Compile>
StephaneLenclud@225
    83
  </ItemGroup>
StephaneLenclud@225
    84
  <ItemGroup>
StephaneLenclud@225
    85
    <None Include="App.config" />
StephaneLenclud@225
    86
  </ItemGroup>
StephaneLenclud@225
    87
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
StephaneLenclud@225
    88
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
StephaneLenclud@225
    89
       Other similar extension points exist, see Microsoft.Common.targets.
StephaneLenclud@225
    90
  <Target Name="BeforeBuild">
StephaneLenclud@225
    91
  </Target>
StephaneLenclud@225
    92
  <Target Name="AfterBuild">
StephaneLenclud@225
    93
  </Target>
StephaneLenclud@225
    94
  -->
StephaneLenclud@225
    95
</Project>