-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
55 lines (50 loc) · 2.63 KB
/
Directory.Build.props
File metadata and controls
55 lines (50 loc) · 2.63 KB
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
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Authors>TiCodeX</Authors>
<Version>2026.3.1</Version>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<ImplicitUsings>enable</ImplicitUsings>
<IncludeServicesUsings>true</IncludeServicesUsings>
<IncludeInfrastructureUsings>true</IncludeInfrastructureUsings>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Globalization" />
<Using Include="System.Linq.Expressions" />
<Using Include="System.Text" />
<Using Include="System.Text.RegularExpressions" />
<Using Include="System.Xml" />
<Using Include="System.Xml.Serialization" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Api" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Compare" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Database" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Database.MicrosoftSql" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Database.MySql" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Database.PostgreSql" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.DatabaseProvider" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Exceptions" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Entities.Project" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Enums" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Extensions" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Interfaces.Repository" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Interfaces.Services" />
<Using Include="TiCodeX.SQLSchemaCompare.Core.Interfaces" />
</ItemGroup>
<ItemGroup Condition="'$(IncludeServicesUsings)' == 'true'">
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="TiCodeX.SQLSchemaCompare.Services" />
</ItemGroup>
<ItemGroup Condition="'$(IncludeInfrastructureUsings)' == 'true'">
<Using Include="Microsoft.EntityFrameworkCore" />
<Using Include="TiCodeX.SQLSchemaCompare.Infrastructure.DatabaseProviders" />
<Using Include="TiCodeX.SQLSchemaCompare.Infrastructure.DatabaseUtilities" />
<Using Include="TiCodeX.SQLSchemaCompare.Infrastructure.EntityFramework" />
<Using Include="TiCodeX.SQLSchemaCompare.Infrastructure.Repository" />
<Using Include="TiCodeX.SQLSchemaCompare.Infrastructure.SqlScripters" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="../SonarLint.xml" />
</ItemGroup>
</Project>