Net451App.csproj 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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. <ProjectGuid>{FBB5F2B5-92BA-4A79-A9FB-52A7A422BA3A}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Net451App</RootNamespace>
  11. <AssemblyName>Net451App</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Reactive.Core, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  39. <HintPath>..\packages\system.reactive.core.3.0.1-build-00046\lib\net45\System.Reactive.Core.dll</HintPath>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="System.Reactive.Interfaces, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  43. <HintPath>..\packages\system.reactive.interfaces.3.0.1-build-00046\lib\net45\System.Reactive.Interfaces.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="System.Reactive.Linq, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  47. <HintPath>..\packages\system.reactive.linq.3.0.1-build-00046\lib\net45\System.Reactive.Linq.dll</HintPath>
  48. <Private>True</Private>
  49. </Reference>
  50. <Reference Include="System.Reactive.PlatformServices, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  51. <HintPath>..\packages\system.reactive.platformservices.3.0.1-build-00046\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
  52. <Private>True</Private>
  53. </Reference>
  54. <Reference Include="System.Reactive.Windows.Threading, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  55. <HintPath>..\packages\system.reactive.windows.threading.3.0.1-build-00046\lib\net45\System.Reactive.Windows.Threading.dll</HintPath>
  56. <Private>True</Private>
  57. </Reference>
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Net.Http" />
  63. <Reference Include="System.Xml" />
  64. <Reference Include="WindowsBase" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Program.cs" />
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="App.config" />
  72. <None Include="packages.config" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ProjectReference Include="..\CommonCodeInPcl\CommonCodeInPcl.csproj">
  76. <Project>{cc62a54d-84bf-4ace-9d9b-04b9b1d389dd}</Project>
  77. <Name>CommonCodeInPcl</Name>
  78. </ProjectReference>
  79. </ItemGroup>
  80. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>