Migrating data from Access 97 to Postgres database
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

93 line
4.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{5F9533DE-6CC6-4131-A85C-203ECFB92FBE}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>acc_pgsql</RootNamespace>
  12. <AssemblyName>acc_pgsql</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  18. <PlatformTarget>x86</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <PlatformTarget>x86</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="Microsoft.Web.XmlTransform">
  38. <HintPath>..\packages\Microsoft.Web.Xdt.2.1.1\lib\net40\Microsoft.Web.XmlTransform.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Mono.Security">
  41. <HintPath>..\packages\Npgsql.2.2.7\lib\net40\Mono.Security.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Newtonsoft.Json">
  44. <HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Npgsql">
  47. <HintPath>..\packages\Npgsql.2.2.7\lib\net40\Npgsql.dll</HintPath>
  48. </Reference>
  49. <Reference Include="NuGet.Core">
  50. <HintPath>..\packages\NuGet.Core.2.14.0\lib\net40-Client\NuGet.Core.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Renci.SshNet">
  53. <HintPath>..\packages\SSH.NET.2014.4.6-beta2\lib\net40\Renci.SshNet.dll</HintPath>
  54. </Reference>
  55. <Reference Include="System" />
  56. <Reference Include="System.Core" />
  57. <Reference Include="System.Net" />
  58. <Reference Include="System.Net.Http.Formatting">
  59. <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.4.0.30506.0\lib\net40\System.Net.Http.Formatting.dll</HintPath>
  60. </Reference>
  61. <Reference Include="System.Net.Http.WebRequest, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  62. <SpecificVersion>False</SpecificVersion>
  63. <HintPath>..\packages\Microsoft.Net.Http.2.0.20710.0\lib\net40\System.Net.Http.WebRequest.dll</HintPath>
  64. </Reference>
  65. <Reference Include="System.Xml.Linq" />
  66. <Reference Include="System.Data.DataSetExtensions" />
  67. <Reference Include="Microsoft.CSharp" />
  68. <Reference Include="System.Data" />
  69. <Reference Include="System.Xml" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Compile Include="DBGlobals.cs" />
  73. <Compile Include="FileHelper.cs" />
  74. <Compile Include="PGSqlGenerator.cs" />
  75. <Compile Include="PGSqlHelper.cs" />
  76. <Compile Include="Program.cs" />
  77. <Compile Include="Properties\AssemblyInfo.cs" />
  78. <Compile Include="PGSqlQueries.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Content Include="InitialSeedData.sql">
  82. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  83. </Content>
  84. </ItemGroup>
  85. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  86. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  87. Other similar extension points exist, see Microsoft.Common.targets.
  88. <Target Name="BeforeBuild">
  89. </Target>
  90. <Target Name="AfterBuild">
  91. </Target>
  92. -->
  93. </Project>