-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpacearr.WixToolset.CustomAction.csproj
More file actions
119 lines (119 loc) · 4.75 KB
/
Spacearr.WixToolset.CustomAction.csproj
File metadata and controls
119 lines (119 loc) · 4.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D170EE1B-499B-495E-BE79-3861DD86A87B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spacearr.WixToolset.CustomAction</RootNamespace>
<AssemblyName>Spacearr.WixToolset.CustomAction</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<WixCATargetsPath Condition=" '$(WixCATargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.CA.targets</WixCATargetsPath>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.Deployment.WindowsInstaller" />
</ItemGroup>
<ItemGroup>
<Compile Include="Controls\BaseControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\LowSpaceControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\LowSpaceControl.Designer.cs">
<DependentUpon>LowSpaceControl.cs</DependentUpon>
</Compile>
<Compile Include="Controls\MiddleControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\PusherControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\PusherControl.Designer.cs">
<DependentUpon>PusherControl.cs</DependentUpon>
</Compile>
<Compile Include="CustomAction.cs" />
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Controls\UpdateAppControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\UpdateAppControl.Designer.cs">
<DependentUpon>UpdateAppControl.cs</DependentUpon>
</Compile>
<Content Include="CustomAction.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Controls\LowSpaceControl.resx">
<DependentUpon>LowSpaceControl.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Controls\PusherControl.resx">
<DependentUpon>PusherControl.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Controls\UpdateAppControl.resx">
<DependentUpon>UpdateAppControl.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Spacearr.Common\Spacearr.Common.csproj">
<Project>{07955d9e-746b-4274-b1e5-b233d577e437}</Project>
<Name>Spacearr.Common</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.2</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(WixCATargetsPath)" />
</Project>