-
-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
16 lines (16 loc) · 825 Bytes
/
Directory.Build.props
File metadata and controls
16 lines (16 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.0.1-dev</Version>
<Authors>Mapperly Contributors, Lars Tönz, Manuel Allenspach</Authors>
<!-- release environment constants -->
<DefineConstants Condition="'$(MAPPERLY_ENVIRONMENT)' == 'next'">$(DefineConstants);ENV_NEXT</DefineConstants>
<DefineConstants Condition="'$(MAPPERLY_ENVIRONMENT)' == 'stable'">$(DefineConstants);ENV_STABLE</DefineConstants>
<DefineConstants Condition="'$(MAPPERLY_ENVIRONMENT)' == ''">$(DefineConstants);ENV_LOCAL</DefineConstants>
</PropertyGroup>
</Project>