-
Notifications
You must be signed in to change notification settings - Fork 8
/
DB_Schema_Export_Tool_Console.csproj
107 lines (107 loc) · 4.65 KB
/
DB_Schema_Export_Tool_Console.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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>{2A5BA9B9-32ED-4E3B-9094-CF5D5A71D5E9}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>DB_Schema_Export_Tool</RootNamespace>
<AssemblyName>DB_Schema_Export_Tool</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>false</Deterministic>
<LangVersion>latest</LangVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\DB_Schema_Export_Tool.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>IDE0028, IDE0290, IDE0300, IDE0305</NoWarn>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>IDE0028, IDE0290, IDE0300, IDE0305</NoWarn>
</PropertyGroup>
<ItemGroup>
<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" />
<Reference Include="TableColumnNameMapContainer">
<HintPath>Lib\TableColumnNameMapContainer.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ColumnMapInfo.cs" />
<Compile Include="DatabaseObjectInfo.cs" />
<Compile Include="DatabaseScriptingOptions.cs" />
<Compile Include="DataExportWorkingParams.cs" />
<Compile Include="DBSchemaExporterBase.cs" />
<Compile Include="DBSchemaExporterPostgreSQL.cs" />
<Compile Include="DBSchemaExporterSQLServer.cs" />
<Compile Include="DBSchemaExportTool.cs" />
<Compile Include="DBSchemaUpdater.cs" />
<Compile Include="DeleteExtraDataRowsScripter.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="LoggerBase.cs" />
<Compile Include="PgDumpTableDataRow.cs" />
<Compile Include="PgDumpTableDataSorter.cs" />
<Compile Include="PgStatementLogControlFiles.cs" />
<Compile Include="Program.cs" />
<Compile Include="ProgramRunner.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SchemaExportOptions.cs" />
<Compile Include="ServerConnectionInfo.cs" />
<Compile Include="SortKeyValue.cs" />
<Compile Include="TableDataExportInfo.cs" />
<Compile Include="TableDataSortOrder.cs" />
<Compile Include="WorkingParams.cs" />
</ItemGroup>
<ItemGroup>
<None Include=".editorconfig" />
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects">
<Version>171.30.0</Version>
</PackageReference>
<PackageReference Include="Npgsql">
<Version>8.0.3</Version>
</PackageReference>
<PackageReference Include="PRISM-DatabaseUtils">
<Version>1.4.32</Version>
</PackageReference>
<PackageReference Include="PRISM-Library">
<Version>2.8.32</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="TableNameMapContainer\TableNameMapContainer.csproj">
<Project>{10cc3f92-4187-46b0-bfd4-e14f60e30a99}</Project>
<Name>TableNameMapContainer</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>