-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (40 loc) · 2.18 KB
/
Directory.Build.props
File metadata and controls
48 lines (40 loc) · 2.18 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
<Project>
<PropertyGroup>
<Product>Dibix</Product>
<Company>Serviceware SE</Company>
<Authors>helpLine GmbH</Authors>
<Copyright>© $([System.DateTime]::Today.Year) Serviceware SE.</Copyright>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!--
Only sign runtime NuGet packages for compatibility reasons.
For these projects we will explicitly enable it.
Currently the only unsigned third party reference is 'Harmony', which is only used in the SDK.
-->
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build\signing-key.snk</AssemblyOriginatorKeyFile>
<ManagePackageVersionsCentrally>True</ManagePackageVersionsCentrally>
<CentralPackageVersionOverrideEnabled>False</CentralPackageVersionOverrideEnabled>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>low</NuGetAuditLevel>
<WarningsAsErrors>$(WarningsAsErrors);NU1900;NU1901;NU1902;NU1903;NU1904;NU1905</WarningsAsErrors>
<RootDirectory>$(MSBuildThisFileDirectory)</RootDirectory>
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory>
<ContinuousIntegrationBuild Condition="'$(TF_BUILD)' == 'true'">true</ContinuousIntegrationBuild>
<DefineConstants Condition="'$(ContinuousIntegrationBuild)' == 'true'">$(DefineConstants);CI_BUILD</DefineConstants>
<PackageProjectUrl>https://github.com/Serviceware/Dibix</PackageProjectUrl>
<RepositoryType>Git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>Dibix</PackageTags>
<Description>Seamlessly create use case oriented REST APIs based on T-SQL stored procedures.</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" Visible="False" />
</ItemGroup>
</Project>