This repository was archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 806
Expand file tree
/
Copy pathSharpDevelop.Setup.wixproj
More file actions
38 lines (38 loc) · 1.82 KB
/
SharpDevelop.Setup.wixproj
File metadata and controls
38 lines (38 loc) · 1.82 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<OutputType>Package</OutputType>
<WixToolPath Condition=" '$(WixToolPath)' == '' ">$(MSBuildProjectDirectory)\..\Tools\Wix</WixToolPath>
<WixTargetsPath>$(WixToolPath)\Wix.targets</WixTargetsPath>
<WixTasksPath>$(WixToolPath)\WixTasks.dll</WixTasksPath>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<RootNamespace>SharpDevelop.Setup</RootNamespace>
<ProjectGuid>{FFC0F136-2F91-4F2E-8D8B-DD435F01A7E6}</ProjectGuid>
<OutputName>SharpDevelop</OutputName>
<OutputPath>bin\</OutputPath>
<WarningLevel>0</WarningLevel>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<SuppressIces>ICE45;ICE69</SuppressIces>
<WixVariables>WixUIDialogBmp=Bitmaps\dlgbmp.bmp;WixUILicenseRtf=License.rtf</WixVariables>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<BaseOutputPath>obj\</BaseOutputPath>
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<BaseOutputPath>obj\</BaseOutputPath>
<IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Setup.wxs" />
<Compile Include="Files.wxs" />
<None Include="Readme.txt" />
</ItemGroup>
<ItemGroup>
<WixExtension Include="$(WixToolPath)\WixUIExtension.dll" />
<WixExtension Include="$(WixToolPath)\WixNetFxExtension.dll" />
<WixExtension Include="$(WixToolPath)\WixUtilExtension.dll" />
</ItemGroup>
<Import Project="$(WixTargetsPath)" Condition="Exists('$(WixTargetsPath)')" />
</Project>