Skip to content
Snippets Groups Projects
Shared.csproj 3.46 KiB
Newer Older
Louis Greiner's avatar
Louis Greiner committed
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{DEEDB05F-755C-4573-A317-E84F11529284}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Shared</RootNamespace>
    <AssemblyName>Shared</AssemblyName>
    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <Deterministic>true</Deterministic>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
Benjamin Vivat's avatar
Benjamin Vivat committed
    <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
      <HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Net.Http" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
Denis Maurin's avatar
Denis Maurin committed
    <Compile Include="comm\messages\NotifyUserChangeMessage.cs" />
    <Compile Include="comm\TcpClientHandler.cs" />
    <Compile Include="data\Game.cs" />
    <Compile Include="data\LightGame.cs" />
    <Compile Include="data\Round.cs" />
    <Compile Include="data\GameAction.cs" />
Pierre Roussel's avatar
Pierre Roussel committed
    <Compile Include="data\LightUser.cs" />
    <Compile Include="data\Phase.cs" />
    <Compile Include="data\Card.cs" />
    <Compile Include="data\ChatMessage.cs" />
    <Compile Include="data\Deck.cs" />
    <Compile Include="data\Player.cs" />
Pierre Roussel's avatar
Pierre Roussel committed
    <Compile Include="data\User.cs" />
    <Compile Include="interfaces\ICommToData.cs" />
    <Compile Include="interfaces\ICommToDataServer.cs" />
    <Compile Include="comm\messages\AnnounceUserMessage.cs" />
Denis Maurin's avatar
Denis Maurin committed
    <Compile Include="comm\messages\RegisterUserReturnMessage.cs" />
Anthony Noir's avatar
Anthony Noir committed
    <Compile Include="comm\MessageToClient.cs" />
    <Compile Include="comm\MessageToServer.cs" />
    <Compile Include="interfaces\IDataToComm.cs" />
Pierre Roussel's avatar
Pierre Roussel committed
    <Compile Include="interfaces\Interface_Comm_calls_Data_Client.cs" />
    <Compile Include="interfaces\Interface_Comm_calls_Data_Server.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
Benjamin Vivat's avatar
Benjamin Vivat committed
  <ItemGroup>
    <None Include="packages.config" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Anthony Noir's avatar
Anthony Noir committed
</Project>