forked from KeRNeLith/QuikGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
46 lines (39 loc) · 1.51 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="./build/BuildSetup.props" />
<PropertyGroup>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Owners>Alexandre Rabérin</Owners>
<Authors>Alexandre Rabérin</Authors>
<Company>Alexandre Rabérin</Company>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MS-PL</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/KeRNeLith/QuikGraph</PackageProjectUrl>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/KeRNeLith/QuikGraph</RepositoryUrl>
</PropertyGroup>
<!-- Optimization configurations -->
<PropertyGroup>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<DefineConstants>JETBRAINS_ANNOTATIONS</DefineConstants>
</PropertyGroup>
<!-- C# configuration -->
<PropertyGroup>
<LangVersion>7</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="$(DeployBuild)">
<DefineConstants>$(DefineConstants);DEPLOY_BUILD;</DefineConstants>
</PropertyGroup>
</Project>