FsDb.Test.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{34388A81-2637-46B3-BC69-3324512D21C7}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>FsDb.Test</RootNamespace>
  11. <AssemblyName>FsDb.Test</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SccProjectName>Svn</SccProjectName>
  15. <SccLocalPath>Svn</SccLocalPath>
  16. <SccAuxPath>Svn</SccAuxPath>
  17. <SccProvider>SubversionScc</SccProvider>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  39. <DebugSymbols>true</DebugSymbols>
  40. <OutputPath>bin\x86\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <DebugType>full</DebugType>
  43. <PlatformTarget>x86</PlatformTarget>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  48. <OutputPath>bin\x86\Release\</OutputPath>
  49. <DefineConstants>TRACE</DefineConstants>
  50. <Optimize>true</Optimize>
  51. <DebugType>pdbonly</DebugType>
  52. <PlatformTarget>x86</PlatformTarget>
  53. <ErrorReport>prompt</ErrorReport>
  54. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="Newtonsoft.Json">
  58. <HintPath>..\packages\Newtonsoft.Json.6.0.5\lib\net35\Newtonsoft.Json.dll</HintPath>
  59. </Reference>
  60. <Reference Include="System" />
  61. <Reference Include="System.Core" />
  62. <Reference Include="System.Xml.Linq" />
  63. <Reference Include="System.Data.DataSetExtensions" />
  64. <Reference Include="System.Data" />
  65. <Reference Include="System.Xml" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Program.cs">
  69. <SubType>
  70. </SubType>
  71. </Compile>
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="Utility.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\FsDb\FsDb.csproj">
  77. <Project>{ddb5e1f5-0eb0-49a1-918d-fc4b2b9bc6e5}</Project>
  78. <Name>FsDb</Name>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="packages.config" />
  83. </ItemGroup>
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>