-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathproject.props
43 lines (43 loc) · 1.82 KB
/
project.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<DependenciesFolder>$(SolutionDir).dependencies</DependenciesFolder>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('SN.'))">
<ProjectDependencies>$(DependenciesFolder)\gameSN</ProjectDependencies>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('SNexp.'))">
<ProjectDependencies>$(DependenciesFolder)\gameSNexp</ProjectDependencies>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('BZ.'))">
<ProjectDependencies>$(DependenciesFolder)\gameBZ</ProjectDependencies>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('BZexp.'))">
<ProjectDependencies>$(DependenciesFolder)\gameBZexp</ProjectDependencies>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<LangVersion>9.0</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<Optimize>true</Optimize>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>IDE0051</NoWarn>
<OutputPath>bin\$(Configuration)\</OutputPath>
<ReferencePath>$(ProjectDependencies)\</ReferencePath>
<Configuration Condition=" '$(Configuration)' == '' ">SN.dev</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<ItemDefinitionGroup>
<Reference>
<Private>False</Private>
</Reference>
</ItemDefinitionGroup>
</Project>