-
Notifications
You must be signed in to change notification settings - Fork 46
/
Directory.Build.props
43 lines (36 loc) · 1.65 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
<Project ToolsVersion="15.0">
<PropertyGroup>
<Configurations>Debug;Release;Debug-LowTrust;Release-LowTrust</Configurations>
</PropertyGroup>
<PropertyGroup>
<LowTrust>false</LowTrust>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug-LowTrust' or '$(Configuration)' == 'Release-LowTrust'">
<LowTrust>true</LowTrust>
<DefineConstants>$(DefineConstants);LOW_TRUST</DefineConstants>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<DisableImplicitConfigurationDefines>true</DisableImplicitConfigurationDefines>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug' or '$(Configuration)' == 'Debug-LowTrust'">
<Optimize>false</Optimize>
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release' or '$(Configuration)' == 'Release-LowTrust'">
<Optimize>true</Optimize>
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>2.0.0</VersionPrefix>
<Authors>Stephan Tolksdorf</Authors>
<Copyright>Copyright © Stephan Tolksdorf</Copyright>
<Product>FParsec</Product>
<PackageProjectUrl>http://www.quanttec.com/fparsec/</PackageProjectUrl>
<RepositoryUrl>https://github.com/stephan-tolksdorf/fparsec</RepositoryUrl>
</PropertyGroup>
</Project>