Winify – Blame information for rev 27

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <?xml version="1.0" encoding="utf-8"?>
22 office 2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1 office 3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProjectGuid>{C93E26D8-ACFF-4FCF-9F03-D710F1CF9F87}</ProjectGuid>
7 <OutputType>WinExe</OutputType>
8 <RootNamespace>Winify</RootNamespace>
9 <AssemblyName>Winify</AssemblyName>
14 office 10 <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1 office 11 <FileAlignment>512</FileAlignment>
12 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
13 <Deterministic>true</Deterministic>
14 office 14 <TargetFrameworkProfile />
1 office 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 <ApplicationIcon>Winify.ico</ApplicationIcon>
37 </PropertyGroup>
27 office 38 <PropertyGroup>
39 <StartupObject />
40 </PropertyGroup>
1 office 41 <ItemGroup>
42 <Reference Include="AutoUpdater.NET, Version=1.7.0.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL">
43 <HintPath>..\packages\Autoupdater.NET.Official.1.7.0\lib\net45\AutoUpdater.NET.dll</HintPath>
44 </Reference>
45 <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
46 <HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
47 </Reference>
18 office 48 <Reference Include="Serilog, Version=2.0.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
21 office 49 <HintPath>..\packages\Serilog.2.11.0\lib\net45\Serilog.dll</HintPath>
18 office 50 </Reference>
51 <Reference Include="Serilog.Sinks.File, Version=5.0.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
52 <HintPath>..\packages\Serilog.Sinks.File.5.0.0\lib\net45\Serilog.Sinks.File.dll</HintPath>
53 </Reference>
1 office 54 <Reference Include="System" />
14 office 55 <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
56 <HintPath>..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll</HintPath>
1 office 57 </Reference>
58 <Reference Include="System.Configuration" />
59 <Reference Include="System.Core" />
60 <Reference Include="System.Net.WebSockets.Client.Managed, Version=1.0.22.0, Culture=neutral, processorArchitecture=MSIL">
61 <HintPath>..\packages\System.Net.WebSockets.Client.Managed.1.0.22\lib\net45\System.Net.WebSockets.Client.Managed.dll</HintPath>
62 </Reference>
14 office 63 <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
64 <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll</HintPath>
1 office 65 </Reference>
15 office 66 <Reference Include="System.Speech" />
1 office 67 <Reference Include="System.Windows" />
68 <Reference Include="System.Xaml" />
69 <Reference Include="Microsoft.CSharp" />
70 <Reference Include="System.Drawing" />
71 <Reference Include="System.Net.Http" />
72 <Reference Include="System.Windows.Forms" />
73 <Reference Include="System.Xml" />
74 <Reference Include="WindowsBase" />
75 </ItemGroup>
76 <ItemGroup>
77 <Compile Include="AboutForm.cs">
78 <SubType>Form</SubType>
79 </Compile>
80 <Compile Include="AboutForm.Designer.cs">
81 <DependentUpon>AboutForm.cs</DependentUpon>
82 </Compile>
15 office 83 <Compile Include="Servers\Serialization\SerializationFailure.cs" />
84 <Compile Include="Servers\Serialization\SerializationState.cs" />
85 <Compile Include="Servers\Serialization\SerializationSuccess.cs" />
8 office 86 <Compile Include="Servers\Serialization\ServersSerialization.cs" />
1 office 87 <Compile Include="Constants.cs" />
88 <Compile Include="Form1.cs">
89 <SubType>Form</SubType>
90 </Compile>
91 <Compile Include="Form1.Designer.cs">
92 <DependentUpon>Form1.cs</DependentUpon>
93 </Compile>
94 <Compile Include="Gotify\GotifyApplication.cs" />
95 <Compile Include="Gotify\GotifyConnection.cs" />
96 <Compile Include="Gotify\GotifyNotification.cs" />
97 <Compile Include="Gotify\GotifyNotificationEventArgs.cs" />
25 office 98 <Compile Include="Settings\SettingsSavedEventArgs.cs" />
14 office 99 <Compile Include="Utilities\AES.cs" />
8 office 100 <Compile Include="Utilities\Natives.cs" />
1 office 101 <Compile Include="Program.cs" />
4 office 102 <Compile Include="Properties\Annotations.cs" />
1 office 103 <Compile Include="Properties\AssemblyInfo.cs" />
8 office 104 <Compile Include="Utilities\Components\ReadOnlyRichTextBox.cs">
1 office 105 <SubType>Component</SubType>
106 </Compile>
8 office 107 <Compile Include="Utilities\Components\ReadOnlyRichTextBox.Designer.cs">
1 office 108 <DependentUpon>ReadOnlyRichTextBox.cs</DependentUpon>
109 </Compile>
25 office 110 <Compile Include="Settings\SettingsForm.cs">
1 office 111 <SubType>Form</SubType>
112 </Compile>
25 office 113 <Compile Include="Settings\SettingsForm.Designer.cs">
1 office 114 <DependentUpon>SettingsForm.cs</DependentUpon>
115 </Compile>
116 <Compile Include="Utilities\Miscellaneous.cs" />
117 <EmbeddedResource Include="AboutForm.resx">
118 <DependentUpon>AboutForm.cs</DependentUpon>
119 </EmbeddedResource>
120 <EmbeddedResource Include="Form1.resx">
121 <DependentUpon>Form1.cs</DependentUpon>
122 </EmbeddedResource>
123 <EmbeddedResource Include="Properties\Resources.resx">
124 <Generator>ResXFileCodeGenerator</Generator>
125 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
126 <SubType>Designer</SubType>
127 </EmbeddedResource>
128 <Compile Include="Properties\Resources.Designer.cs">
129 <AutoGen>True</AutoGen>
130 <DependentUpon>Resources.resx</DependentUpon>
12 office 131 <DesignTime>True</DesignTime>
1 office 132 </Compile>
25 office 133 <EmbeddedResource Include="Settings\SettingsForm.resx">
1 office 134 <DependentUpon>SettingsForm.cs</DependentUpon>
135 </EmbeddedResource>
12 office 136 <None Include="Resources\winify.psd" />
1 office 137 <None Include="packages.config" />
138 <None Include="Properties\Settings.settings">
139 <Generator>SettingsSingleFileGenerator</Generator>
140 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
141 </None>
142 <Compile Include="Properties\Settings.Designer.cs">
143 <AutoGen>True</AutoGen>
144 <DependentUpon>Settings.settings</DependentUpon>
145 <DesignTimeSharedInput>True</DesignTimeSharedInput>
146 </Compile>
147 </ItemGroup>
148 <ItemGroup>
149 <None Include="App.config" />
150 </ItemGroup>
151 <ItemGroup>
22 office 152 <ProjectReference Include="..\Announcements\Announcements.csproj">
153 <Project>{aebb1e52-0676-406f-980b-708006ea36e0}</Project>
15 office 154 <Name>Announcements</Name>
155 </ProjectReference>
6 office 156 <ProjectReference Include="..\Servers\Servers.csproj">
157 <Project>{ddab11f9-3308-4464-b864-4d75cba1acc8}</Project>
158 <Name>Servers</Name>
159 </ProjectReference>
22 office 160 <ProjectReference Include="..\WindowsToastNotifications\ToastNotifications\ToastNotifications.csproj">
161 <Project>{380d8d88-386c-4c50-9a54-800f79fdf7d2}</Project>
162 <Name>ToastNotifications</Name>
163 </ProjectReference>
6 office 164 </ItemGroup>
165 <ItemGroup>
12 office 166 <Content Include="Resources\about.png" />
167 <Content Include="Resources\close.png" />
168 <Content Include="Resources\exit.png" />
169 <Content Include="Resources\notification.wav" />
170 <Content Include="Resources\settings.png" />
171 <Content Include="Resources\update.png" />
172 <Content Include="Resources\Winify.ico" />
173 <Content Include="Resources\winify.png" />
1 office 174 <Content Include="Winify.ico" />
175 </ItemGroup>
8 office 176 <ItemGroup />
1 office 177 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
178 </Project>