-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (36 loc) · 1.5 KB
/
Directory.Build.props
File metadata and controls
36 lines (36 loc) · 1.5 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<!-- Central Direct Framework versioning -->
<!-- SemVer version-->
<Version>2.1.0-preview.1</Version>
<!-- Dacpac assembly versioning -->
<DacVersion>2.1.0.0</DacVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Central SQL Server target versioning -->
<!-- 160 = SQL Server 2022 -->
<CompatibilityMode>160</CompatibilityMode>
<DefaultCollation>SQL_Latin1_General_CP1_CS_AS</DefaultCollation>
<ModelCollation>1033,CS</ModelCollation>
</PropertyGroup>
<PropertyGroup>
<!-- Shared project properties -->
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<EnforceConsistentLineEndings>true</EnforceConsistentLineEndings>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<NuGetAudit>true</NuGetAudit>
<Nullable>enable</Nullable>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/data-solution-automation-engine/DIRECT</RepositoryUrl>
<!-- Analyzers and related behavior -->
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<TreatWarningsAsErrors Condition="'$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
<!-- Testing related -->
<UseMicrosoftTestingPlatform>true</UseMicrosoftTestingPlatform>
<EnableLegacyVSTest>false</EnableLegacyVSTest>
<TestResultsDirectory>$(MSBuildProjectDirectory)\TestResults</TestResultsDirectory>
</PropertyGroup>
</Project>