-
Notifications
You must be signed in to change notification settings - Fork 16
/
Default.CSharp.props
45 lines (40 loc) · 1.46 KB
/
Default.CSharp.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
<?xml version="1.0" encoding="utf-8"?>
<!--
eduVPN - VPN for education and research
Copyright: 2017-2024 The Commons Conservancy
SPDX-License-Identifier: GPL-3.0+
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
Global settings - applied to all configurations and platforms
-->
<PropertyGroup>
<OutputPath>$(SolutionDir)bin\$(Configuration)\$(Platform)\</OutputPath>
<WarningLevel>4</WarningLevel>
<ErrorReport>prompt</ErrorReport>
<DefineConstants>TRACE;PLATFORM_$(Platform);$(DefineConstants)</DefineConstants>
<Prefer32Bit>false</Prefer32Bit>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<PlatformTarget>$(Platform)</PlatformTarget>
</PropertyGroup>
<!--
Configuration specific settings
-->
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<Optimize>false</Optimize>
<DefineConstants>DEBUG;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<Optimize>true</Optimize>
</PropertyGroup>
<!--
Platform specific settings
-->
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<OutputPath>$(SolutionDir)bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'ARM64' ">
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
</PropertyGroup>
</Project>