-
Notifications
You must be signed in to change notification settings - Fork 0
/
DBTools.csproj
66 lines (60 loc) · 2.83 KB
/
DBTools.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Jannesen.Tools.DBTools</RootNamespace>
<AssemblyName>DBTools</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AutoGenerateBindingRedirects>False</AutoGenerateBindingRedirects>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<WarningLevel>4</WarningLevel>
<Company>Jannesen B.V.</Company>
<Version>1.10.00.001</Version>
<RepositoryUrl>https://github.com/jannesen/DBTools</RepositoryUrl>
<Authors>Peter Jannesen</Authors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="SqlScripts\DBSchemaExportToXml-code-object.sql" />
<None Remove="SqlScripts\DBSchemaExportToXml-default.sql" />
<None Remove="SqlScripts\DBSchemaExportToXml-role.sql" />
<None Remove="SqlScripts\DBSchemaExportToXml-rule.sql" />
<None Remove="SqlScripts\DBSchemaExportToXml-table.sql" />
<None Remove="SqlScripts\DBSchemaExportToXml-type-with-code.sql" />
<None Remove="SqlScripts\DBSchemaExportToXml-type.sql" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-code-object.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-table.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-type-with-code.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-type.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-rule.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-default.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-role.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-diagram.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-pre.sql" />
<EmbeddedResource Include="SqlScripts\DBSchemaExportToXml-post.sql" />
<EmbeddedResource Include="SqlScripts\DropAllCode.sql" />
</ItemGroup>
</Project>