-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (33 loc) · 1.25 KB
/
Directory.Build.props
File metadata and controls
38 lines (33 loc) · 1.25 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Authors>Alexandre Rabérin</Authors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MS-PL</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/brucificus/FastGraph</PackageProjectUrl>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/brucificus/FastGraph</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>
</Project>