Winify – Blame information for rev 14

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>{C93E26D8-ACFF-4FCF-9F03-D710F1CF9F87}</ProjectGuid>
8 <OutputType>WinExe</OutputType>
9 <RootNamespace>Winify</RootNamespace>
10 <AssemblyName>Winify</AssemblyName>
14 office 11 <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1 office 12 <FileAlignment>512</FileAlignment>
13 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14 <Deterministic>true</Deterministic>
14 office 15 <TargetFrameworkProfile />
1 office 16 </PropertyGroup>
17 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18 <PlatformTarget>AnyCPU</PlatformTarget>
19 <DebugSymbols>true</DebugSymbols>
20 <DebugType>full</DebugType>
21 <Optimize>false</Optimize>
22 <OutputPath>bin\Debug\</OutputPath>
23 <DefineConstants>DEBUG;TRACE</DefineConstants>
24 <ErrorReport>prompt</ErrorReport>
25 <WarningLevel>4</WarningLevel>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28 <PlatformTarget>AnyCPU</PlatformTarget>
29 <DebugType>pdbonly</DebugType>
30 <Optimize>true</Optimize>
31 <OutputPath>bin\Release\</OutputPath>
32 <DefineConstants>TRACE</DefineConstants>
33 <ErrorReport>prompt</ErrorReport>
34 <WarningLevel>4</WarningLevel>
35 </PropertyGroup>
36 <PropertyGroup>
37 <ApplicationIcon>Winify.ico</ApplicationIcon>
38 </PropertyGroup>
39 <ItemGroup>
40 <Reference Include="AutoUpdater.NET, Version=1.7.0.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL">
41 <HintPath>..\packages\Autoupdater.NET.Official.1.7.0\lib\net45\AutoUpdater.NET.dll</HintPath>
42 </Reference>
43 <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
44 <HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
45 </Reference>
46 <Reference Include="System" />
14 office 47 <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
48 <HintPath>..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll</HintPath>
1 office 49 </Reference>
50 <Reference Include="System.Configuration" />
51 <Reference Include="System.Core" />
52 <Reference Include="System.Net.WebSockets.Client.Managed, Version=1.0.22.0, Culture=neutral, processorArchitecture=MSIL">
53 <HintPath>..\packages\System.Net.WebSockets.Client.Managed.1.0.22\lib\net45\System.Net.WebSockets.Client.Managed.dll</HintPath>
54 </Reference>
14 office 55 <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
56 <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll</HintPath>
1 office 57 </Reference>
58 <Reference Include="System.Windows" />
59 <Reference Include="System.Xaml" />
60 <Reference Include="Microsoft.CSharp" />
61 <Reference Include="System.Drawing" />
62 <Reference Include="System.Net.Http" />
63 <Reference Include="System.Windows.Forms" />
64 <Reference Include="System.Xml" />
65 <Reference Include="WindowsBase" />
66 </ItemGroup>
67 <ItemGroup>
68 <Compile Include="AboutForm.cs">
69 <SubType>Form</SubType>
70 </Compile>
71 <Compile Include="AboutForm.Designer.cs">
72 <DependentUpon>AboutForm.cs</DependentUpon>
73 </Compile>
11 office 74 <Compile Include="NotificationManager.cs" />
8 office 75 <Compile Include="Servers\Serialization\ServersSerializationFailure.cs" />
76 <Compile Include="Servers\Serialization\ServersSerializationState.cs" />
77 <Compile Include="Servers\Serialization\ServersSerializationSuccess.cs" />
78 <Compile Include="Servers\Serialization\ServersSerialization.cs" />
1 office 79 <Compile Include="Constants.cs" />
80 <Compile Include="Form1.cs">
81 <SubType>Form</SubType>
82 </Compile>
83 <Compile Include="Form1.Designer.cs">
84 <DependentUpon>Form1.cs</DependentUpon>
85 </Compile>
86 <Compile Include="Gotify\GotifyApplication.cs" />
4 office 87 <Compile Include="Gotify\GotifyConnectionManager.cs" />
1 office 88 <Compile Include="Gotify\GotifyConnection.cs" />
89 <Compile Include="Gotify\GotifyNotification.cs" />
90 <Compile Include="Gotify\GotifyNotificationEventArgs.cs" />
14 office 91 <Compile Include="Utilities\AES.cs" />
8 office 92 <Compile Include="Utilities\Natives.cs" />
1 office 93 <Compile Include="NotificationForm.cs">
94 <SubType>Form</SubType>
95 </Compile>
96 <Compile Include="NotificationForm.Designer.cs">
97 <DependentUpon>NotificationForm.cs</DependentUpon>
98 </Compile>
99 <Compile Include="Program.cs" />
4 office 100 <Compile Include="Properties\Annotations.cs" />
1 office 101 <Compile Include="Properties\AssemblyInfo.cs" />
8 office 102 <Compile Include="Utilities\Components\ReadOnlyRichTextBox.cs">
1 office 103 <SubType>Component</SubType>
104 </Compile>
8 office 105 <Compile Include="Utilities\Components\ReadOnlyRichTextBox.Designer.cs">
1 office 106 <DependentUpon>ReadOnlyRichTextBox.cs</DependentUpon>
107 </Compile>
108 <Compile Include="SettingsForm.cs">
109 <SubType>Form</SubType>
110 </Compile>
111 <Compile Include="SettingsForm.Designer.cs">
112 <DependentUpon>SettingsForm.cs</DependentUpon>
113 </Compile>
114 <Compile Include="Utilities\Miscellaneous.cs" />
115 <EmbeddedResource Include="AboutForm.resx">
116 <DependentUpon>AboutForm.cs</DependentUpon>
117 </EmbeddedResource>
118 <EmbeddedResource Include="Form1.resx">
119 <DependentUpon>Form1.cs</DependentUpon>
120 </EmbeddedResource>
121 <EmbeddedResource Include="NotificationForm.resx">
122 <DependentUpon>NotificationForm.cs</DependentUpon>
123 </EmbeddedResource>
124 <EmbeddedResource Include="Properties\Resources.resx">
125 <Generator>ResXFileCodeGenerator</Generator>
126 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
127 <SubType>Designer</SubType>
128 </EmbeddedResource>
129 <Compile Include="Properties\Resources.Designer.cs">
130 <AutoGen>True</AutoGen>
131 <DependentUpon>Resources.resx</DependentUpon>
12 office 132 <DesignTime>True</DesignTime>
1 office 133 </Compile>
134 <EmbeddedResource Include="SettingsForm.resx">
135 <DependentUpon>SettingsForm.cs</DependentUpon>
136 </EmbeddedResource>
12 office 137 <None Include="Resources\winify.psd" />
4 office 138 <None Include="Servers.xsd">
139 <SubType>Designer</SubType>
140 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
141 </None>
1 office 142 <None Include="packages.config" />
143 <None Include="Properties\Settings.settings">
144 <Generator>SettingsSingleFileGenerator</Generator>
145 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
146 </None>
147 <Compile Include="Properties\Settings.Designer.cs">
148 <AutoGen>True</AutoGen>
149 <DependentUpon>Settings.settings</DependentUpon>
150 <DesignTimeSharedInput>True</DesignTimeSharedInput>
151 </Compile>
152 </ItemGroup>
153 <ItemGroup>
154 <None Include="App.config" />
155 </ItemGroup>
156 <ItemGroup>
6 office 157 <ProjectReference Include="..\Servers\Servers.csproj">
158 <Project>{ddab11f9-3308-4464-b864-4d75cba1acc8}</Project>
159 <Name>Servers</Name>
160 </ProjectReference>
161 </ItemGroup>
162 <ItemGroup>
12 office 163 <Content Include="Resources\about.png" />
164 <Content Include="Resources\close.png" />
165 <Content Include="Resources\exit.png" />
166 <Content Include="Resources\notification.wav" />
167 <Content Include="Resources\settings.png" />
168 <Content Include="Resources\update.png" />
169 <Content Include="Resources\Winify.ico" />
170 <Content Include="Resources\winify.png" />
1 office 171 <Content Include="Winify.ico" />
172 </ItemGroup>
8 office 173 <ItemGroup />
1 office 174 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
175 </Project>