forked from ms-iot/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.props
30 lines (28 loc) · 934 Bytes
/
custom.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<GlobalAssemblyInfo>Properties\AssemblyVersion.cs</GlobalAssemblyInfo>
</PropertyGroup>
<PropertyGroup Label="Version">
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionInfoProductName>Core</VersionInfoProductName>
</PropertyGroup>
<!--
This is used by the build system to control where to binplace build output.
Every solution should produce a directory under bin.
-->
<Choose>
<When Condition="'$(OutputSubDir)' != ''" />
<When Condition="'$(SolutionName)' != ''" >
<PropertyGroup>
<OutputSubDir>bin\$(SolutionName)</OutputSubDir>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<OutputSubDir>bin</OutputSubDir>
</PropertyGroup>
</Otherwise>
</Choose>
</Project>