forked from iainsolutions/TSqlFormatter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
49 lines (42 loc) · 1.9 KB
/
Directory.Build.props
File metadata and controls
49 lines (42 loc) · 1.9 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
<Project>
<PropertyGroup>
<!-- Common Version Info -->
<Version>1.7.0</Version>
<AssemblyVersion>1.7.0.0</AssemblyVersion>
<FileVersion>1.7.0.0</FileVersion>
<InformationalVersion>1.7.0</InformationalVersion>
<!-- Common Properties -->
<Authors>Tao Klerks</Authors>
<Company />
<Product>T-SQL Formatter</Product>
<Copyright>Copyright © 2011-2025 Tao Klerks</Copyright>
<PackageProjectUrl>https://github.com/TaoK/PoorMansTSqlFormatter</PackageProjectUrl>
<RepositoryUrl>https://github.com/TaoK/PoorMansTSqlFormatter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<!-- Build Configuration -->
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Deterministic>true</Deterministic>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<!-- Ensure PDB files are generated and included in VSIX -->
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<!-- Code Analysis -->
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<!-- Output Paths -->
<BaseOutputPath>bin\</BaseOutputPath>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
</Project>