forked from macsux/cf-buildpack-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (41 loc) · 1.87 KB
/
Copy pathDirectory.Build.props
File metadata and controls
41 lines (41 loc) · 1.87 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>NU5104;CS1998</NoWarn>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<UsePackages>false</UsePackages>
<LangVersion>latest</LangVersion>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<__RootDirectoryBuildDir>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</__RootDirectoryBuildDir>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" PrivateAssets="all">
<CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
</PackageReference>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<!--#if (false) -->
<PropertyGroup>
<Configurations>Debug;Release;Supply;Final;HttpModule;HostedService</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Supply' ">
<DefineConstants>TRACE;IsSupplyBuildpack</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Final' ">
<DefineConstants>TRACE;IsFinalBuildpack</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'HttpModule' ">
<DefineConstants>TRACE;IsHttpModuleBuildpack</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'HostedService' ">
<DefineConstants>TRACE;IsHostedServiceBuildpack</DefineConstants>
</PropertyGroup>
<!--#endif -->
</Project>