Widow – Blame information for rev 23

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{CCA890AA-3739-4425-9993-D4109606A7F5}</ProjectGuid>
8 <OutputType>WinExe</OutputType>
9 <RootNamespace>Widow</RootNamespace>
10 <AssemblyName>Widow</AssemblyName>
11 <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12 <FileAlignment>512</FileAlignment>
13 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14 <Deterministic>true</Deterministic>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17 <PlatformTarget>AnyCPU</PlatformTarget>
18 <DebugSymbols>true</DebugSymbols>
19 <DebugType>full</DebugType>
20 <Optimize>false</Optimize>
21 <OutputPath>bin\Debug\</OutputPath>
22 <DefineConstants>DEBUG;TRACE</DefineConstants>
23 <ErrorReport>prompt</ErrorReport>
24 <WarningLevel>4</WarningLevel>
25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27 <PlatformTarget>AnyCPU</PlatformTarget>
28 <DebugType>pdbonly</DebugType>
29 <Optimize>true</Optimize>
30 <OutputPath>bin\Release\</OutputPath>
31 <DefineConstants>TRACE</DefineConstants>
32 <ErrorReport>prompt</ErrorReport>
33 <WarningLevel>4</WarningLevel>
34 </PropertyGroup>
35 <PropertyGroup>
36 <ApplicationManifest>app.manifest</ApplicationManifest>
37 </PropertyGroup>
38 <PropertyGroup>
39 <ApplicationIcon>favicon.ico</ApplicationIcon>
40 </PropertyGroup>
41 <ItemGroup>
15 office 42 <Reference Include="AutoUpdater.NET, Version=1.6.4.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL">
43 <HintPath>..\packages\Autoupdater.NET.Official.1.6.4\lib\net45\AutoUpdater.NET.dll</HintPath>
44 </Reference>
18 office 45 <Reference Include="Gma.System.MouseKeyHook, Version=5.6.130.0, Culture=neutral, processorArchitecture=MSIL">
46 <HintPath>..\packages\MouseKeyHook.5.6.0\lib\net40\Gma.System.MouseKeyHook.dll</HintPath>
47 </Reference>
1 office 48 <Reference Include="System" />
23 office 49 <Reference Include="System.Configuration" />
1 office 50 <Reference Include="System.Core" />
15 office 51 <Reference Include="System.Runtime.Serialization" />
52 <Reference Include="System.Threading.Tasks.Dataflow, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
53 <HintPath>..\packages\System.Threading.Tasks.Dataflow.5.0.0\lib\portable-net45+win8+wpa81\System.Threading.Tasks.Dataflow.dll</HintPath>
11 office 54 </Reference>
15 office 55 <Reference Include="System.Xaml" />
1 office 56 <Reference Include="System.Xml.Linq" />
57 <Reference Include="System.Data.DataSetExtensions" />
58 <Reference Include="Microsoft.CSharp" />
59 <Reference Include="System.Data" />
60 <Reference Include="System.Deployment" />
61 <Reference Include="System.Drawing" />
62 <Reference Include="System.Net.Http" />
63 <Reference Include="System.Windows.Forms" />
64 <Reference Include="System.Xml" />
65 </ItemGroup>
66 <ItemGroup>
5 office 67 <Compile Include="AboutForm.cs">
68 <SubType>Form</SubType>
69 </Compile>
70 <Compile Include="AboutForm.Designer.cs">
71 <DependentUpon>AboutForm.cs</DependentUpon>
72 </Compile>
13 office 73 <Compile Include="DrawOverlayForm.cs">
74 <SubType>Form</SubType>
75 </Compile>
76 <Compile Include="DrawOverlayForm.Designer.cs">
77 <DependentUpon>DrawOverlayForm.cs</DependentUpon>
78 </Compile>
21 office 79 <Compile Include="LogForm.cs">
80 <SubType>Form</SubType>
81 </Compile>
82 <Compile Include="LogForm.Designer.cs">
83 <DependentUpon>LogForm.cs</DependentUpon>
84 </Compile>
13 office 85 <Compile Include="WindowDrawnEventArgs.cs" />
11 office 86 <Compile Include="WindowManipulatedEventArgs.cs" />
9 office 87 <Compile Include="WindowManipulation.cs" />
1 office 88 <Compile Include="Constants.cs" />
89 <Compile Include="DesktopWindow.cs" />
90 <Compile Include="Helpers.cs" />
91 <Compile Include="Natives.cs" />
6 office 92 <Compile Include="MainForm.cs">
1 office 93 <SubType>Form</SubType>
94 </Compile>
6 office 95 <Compile Include="MainForm.Designer.cs">
96 <DependentUpon>MainForm.cs</DependentUpon>
1 office 97 </Compile>
98 <Compile Include="RuleEditForm.cs">
99 <SubType>Form</SubType>
100 </Compile>
101 <Compile Include="RuleEditForm.Designer.cs">
102 <DependentUpon>RuleEditForm.cs</DependentUpon>
103 </Compile>
104 <Compile Include="Program.cs" />
105 <Compile Include="Properties\Annotations.cs" />
106 <Compile Include="Properties\AssemblyInfo.cs" />
107 <Compile Include="Serialization\SerializationFailure.cs" />
108 <Compile Include="Serialization\SerializationState.cs" />
109 <Compile Include="Serialization\SerializationSuccess.cs" />
110 <Compile Include="Serialization\WindowsSerialization.cs" />
111 <Compile Include="Utilities.cs" />
112 <Compile Include="WindowCreatedEventArgs.cs" />
113 <Compile Include="WindowDestroyedEventArgs.cs" />
14 office 114 <Compile Include="WindowModification.cs" />
5 office 115 <EmbeddedResource Include="AboutForm.resx">
116 <DependentUpon>AboutForm.cs</DependentUpon>
117 </EmbeddedResource>
13 office 118 <EmbeddedResource Include="DrawOverlayForm.resx">
119 <DependentUpon>DrawOverlayForm.cs</DependentUpon>
120 </EmbeddedResource>
21 office 121 <EmbeddedResource Include="LogForm.resx">
122 <DependentUpon>LogForm.cs</DependentUpon>
123 </EmbeddedResource>
6 office 124 <EmbeddedResource Include="MainForm.resx">
125 <DependentUpon>MainForm.cs</DependentUpon>
1 office 126 </EmbeddedResource>
127 <EmbeddedResource Include="RuleEditForm.resx">
128 <DependentUpon>RuleEditForm.cs</DependentUpon>
129 </EmbeddedResource>
130 <EmbeddedResource Include="Properties\Resources.resx">
131 <Generator>ResXFileCodeGenerator</Generator>
132 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
133 <SubType>Designer</SubType>
134 </EmbeddedResource>
135 <Compile Include="Properties\Resources.Designer.cs">
136 <AutoGen>True</AutoGen>
137 <DependentUpon>Resources.resx</DependentUpon>
138 </Compile>
139 <None Include="app.manifest" />
11 office 140 <None Include="packages.config" />
1 office 141 <None Include="Properties\Settings.settings">
9 office 142 <Generator>PublicSettingsSingleFileGenerator</Generator>
1 office 143 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
144 </None>
145 <Compile Include="Properties\Settings.Designer.cs">
146 <AutoGen>True</AutoGen>
147 <DependentUpon>Settings.settings</DependentUpon>
148 <DesignTimeSharedInput>True</DesignTimeSharedInput>
149 </Compile>
150 </ItemGroup>
151 <ItemGroup>
152 <None Include="App.config" />
153 </ItemGroup>
154 <ItemGroup>
155 <ProjectReference Include="..\Windows\Windows.csproj">
156 <Project>{0b66cee4-c0e0-4dd0-a232-b3a8013bc80d}</Project>
157 <Name>Windows</Name>
158 </ProjectReference>
159 </ItemGroup>
160 <ItemGroup>
161 <Content Include="favicon.ico" />
162 <Content Include="img\about.png" />
163 <Content Include="img\apply.png" />
7 office 164 <Content Include="img\button.png" />
1 office 165 <Content Include="img\exit.png" />
166 <Content Include="img\favicon.ico" />
167 <Content Include="img\new.png" />
168 <Content Include="img\notepad.png" />
169 <Content Include="img\settings.png" />
8 office 170 <Content Include="img\solution.png" />
1 office 171 <Content Include="img\spider.png" />
8 office 172 <Content Include="img\timer.png" />
21 office 173 <Content Include="img\wood.png" />
1 office 174 </ItemGroup>
175 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
176 </Project>