-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
58 lines (45 loc) · 2.36 KB
/
Directory.Build.props
File metadata and controls
58 lines (45 loc) · 2.36 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
56
57
58
<Project>
<PropertyGroup>
<Product>InStep</Product>
<Authors>InStep Team</Authors>
<Company>InStep, Inc</Company>
<Version>1.0.0</Version>
<PackageReleaseNotes>https://github.com/MyInStep/PgHintPlan/releases</PackageReleaseNotes>
<Copyright>Copyright © 2021-2026 by InStep, Inc. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/MyInStep/PgHintPlan</PackageProjectUrl>
<RepositoryUrl>https://github.com/MyInStep/PgHintPlan</RepositoryUrl>
<LangVersion>latest</LangVersion>
<IsPackable>true</IsPackable>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Configurations>Debug;Release</Configurations>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);NETSDK1206;1701;1702;NETSDK1138;CS8892;ASP0014;IDE0063;IDE0090;IDE0017;IDE0079;IDE0066;NU1605;MSB3026;MSB3061;CS8981;TS2792;TS2688;TS1259;CA1416;JMA001;JMC001</NoWarn>
<!-- Debugging -->
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Publish defaults -->
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<!-- Build configuration related settings -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DefineConstants>$(DefineConstants);TRACE;DEBUG</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
</PropertyGroup>
<!-- Telerik JustMock settings -->
<PropertyGroup Condition="'$(JUSTMOCK_ENABLED)' == 'true'">
<DefineConstants>$(DefineConstants);JUSTMOCK</DefineConstants>
</PropertyGroup>
</Project>