forked from wixtoolset/wix3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWixBuild.csproj.props
57 lines (50 loc) · 2.63 KB
/
WixBuild.csproj.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
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<!-- Default C# properties -->
<PropertyGroup>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AllowUnsafeBlocks Condition=" '$(AllowUnsafeBlocks)' == '' ">false</AllowUnsafeBlocks>
<CheckForOverflowUnderflow Condition=" '$(OverrideCheckForOverflowUnderflow)' == '' ">true</CheckForOverflowUnderflow>
<CheckForOverflowUnderflow Condition=" '$(OverrideCheckForOverflowUnderflow)' != '' ">$(OverrideCheckForOverflowUnderflow)</CheckForOverflowUnderflow>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>4096</FileAlignment>
<NoStdLib>false</NoStdLib>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningLevel>4</WarningLevel>
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
<TargetFrameworkVersion Condition=" '$(TargetFrameworkVersion)'=='' ">v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(CreateDocumentationFile)' == 'true' ">
<DocumentationFile>$(IntermediateOutputPath)$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(VersionCS)' == '' ">
<VersionCS>wixver.cs</VersionCS>
</PropertyGroup>
<PropertyGroup Condition=" '$(DistCS)' == '' ">
<DistCS>WixDistribution.cs</DistCS>
</PropertyGroup>
<ItemGroup>
<!-- Include the current version in all of the wix projects (this won't show up in the Solution Explorer, but it is used when building). -->
<Compile Include="$(WixVersionPath)$(VersionCS)">
<Link>Properties\$(VersionCS)</Link>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
<Visible>false</Visible>
</Compile>
<Compile Include="$(WixRoot)src\common\$(DistCS)">
<Link>Properties\$(DistCS)</Link>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
<Visible>false</Visible>
</Compile>
</ItemGroup>
</Project>