Winify – Blame information for rev 25

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>
38 <ItemGroup>
39 <Reference Include="AutoUpdater.NET, Version=1.7.0.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL">
40 <HintPath>..\packages\Autoupdater.NET.Official.1.7.0\lib\net45\AutoUpdater.NET.dll</HintPath>
41 </Reference>
42 <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
43 <HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
44 </Reference>
18 office 45 <Reference Include="Serilog, Version=2.0.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
21 office 46 <HintPath>..\packages\Serilog.2.11.0\lib\net45\Serilog.dll</HintPath>
18 office 47 </Reference>
48 <Reference Include="Serilog.Sinks.File, Version=5.0.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
49 <HintPath>..\packages\Serilog.Sinks.File.5.0.0\lib\net45\Serilog.Sinks.File.dll</HintPath>
50 </Reference>
1 office 51 <Reference Include="System" />
14 office 52 <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
53 <HintPath>..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll</HintPath>
1 office 54 </Reference>
55 <Reference Include="System.Configuration" />
56 <Reference Include="System.Core" />
57 <Reference Include="System.Net.WebSockets.Client.Managed, Version=1.0.22.0, Culture=neutral, processorArchitecture=MSIL">
58 <HintPath>..\packages\System.Net.WebSockets.Client.Managed.1.0.22\lib\net45\System.Net.WebSockets.Client.Managed.dll</HintPath>
59 </Reference>
14 office 60 <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
61 <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll</HintPath>
1 office 62 </Reference>
15 office 63 <Reference Include="System.Speech" />
1 office 64 <Reference Include="System.Windows" />
65 <Reference Include="System.Xaml" />
66 <Reference Include="Microsoft.CSharp" />
67 <Reference Include="System.Drawing" />
68 <Reference Include="System.Net.Http" />
69 <Reference Include="System.Windows.Forms" />
70 <Reference Include="System.Xml" />
71 <Reference Include="WindowsBase" />
72 </ItemGroup>
73 <ItemGroup>
74 <Compile Include="AboutForm.cs">
75 <SubType>Form</SubType>
76 </Compile>
77 <Compile Include="AboutForm.Designer.cs">
78 <DependentUpon>AboutForm.cs</DependentUpon>
79 </Compile>
15 office 80 <Compile Include="Servers\Serialization\SerializationFailure.cs" />
81 <Compile Include="Servers\Serialization\SerializationState.cs" />
82 <Compile Include="Servers\Serialization\SerializationSuccess.cs" />
8 office 83 <Compile Include="Servers\Serialization\ServersSerialization.cs" />
1 office 84 <Compile Include="Constants.cs" />
85 <Compile Include="Form1.cs">
86 <SubType>Form</SubType>
87 </Compile>
88 <Compile Include="Form1.Designer.cs">
89 <DependentUpon>Form1.cs</DependentUpon>
90 </Compile>
91 <Compile Include="Gotify\GotifyApplication.cs" />
92 <Compile Include="Gotify\GotifyConnection.cs" />
93 <Compile Include="Gotify\GotifyNotification.cs" />
94 <Compile Include="Gotify\GotifyNotificationEventArgs.cs" />
25 office 95 <Compile Include="Settings\SettingsSavedEventArgs.cs" />
14 office 96 <Compile Include="Utilities\AES.cs" />
8 office 97 <Compile Include="Utilities\Natives.cs" />
1 office 98 <Compile Include="Program.cs" />
4 office 99 <Compile Include="Properties\Annotations.cs" />
1 office 100 <Compile Include="Properties\AssemblyInfo.cs" />
8 office 101 <Compile Include="Utilities\Components\ReadOnlyRichTextBox.cs">
1 office 102 <SubType>Component</SubType>
103 </Compile>
8 office 104 <Compile Include="Utilities\Components\ReadOnlyRichTextBox.Designer.cs">
1 office 105 <DependentUpon>ReadOnlyRichTextBox.cs</DependentUpon>
106 </Compile>
25 office 107 <Compile Include="Settings\SettingsForm.cs">
1 office 108 <SubType>Form</SubType>
109 </Compile>
25 office 110 <Compile Include="Settings\SettingsForm.Designer.cs">
1 office 111 <DependentUpon>SettingsForm.cs</DependentUpon>
112 </Compile>
113 <Compile Include="Utilities\Miscellaneous.cs" />
114 <EmbeddedResource Include="AboutForm.resx">
115 <DependentUpon>AboutForm.cs</DependentUpon>
116 </EmbeddedResource>
117 <EmbeddedResource Include="Form1.resx">
118 <DependentUpon>Form1.cs</DependentUpon>
119 </EmbeddedResource>
120 <EmbeddedResource Include="Properties\Resources.resx">
121 <Generator>ResXFileCodeGenerator</Generator>
122 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
123 <SubType>Designer</SubType>
124 </EmbeddedResource>
125 <Compile Include="Properties\Resources.Designer.cs">
126 <AutoGen>True</AutoGen>
127 <DependentUpon>Resources.resx</DependentUpon>
12 office 128 <DesignTime>True</DesignTime>
1 office 129 </Compile>
25 office 130 <EmbeddedResource Include="Settings\SettingsForm.resx">
1 office 131 <DependentUpon>SettingsForm.cs</DependentUpon>
132 </EmbeddedResource>
12 office 133 <None Include="Resources\winify.psd" />
1 office 134 <None Include="packages.config" />
135 <None Include="Properties\Settings.settings">
136 <Generator>SettingsSingleFileGenerator</Generator>
137 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
138 </None>
139 <Compile Include="Properties\Settings.Designer.cs">
140 <AutoGen>True</AutoGen>
141 <DependentUpon>Settings.settings</DependentUpon>
142 <DesignTimeSharedInput>True</DesignTimeSharedInput>
143 </Compile>
144 </ItemGroup>
145 <ItemGroup>
146 <None Include="App.config" />
147 </ItemGroup>
148 <ItemGroup>
22 office 149 <ProjectReference Include="..\Announcements\Announcements.csproj">
150 <Project>{aebb1e52-0676-406f-980b-708006ea36e0}</Project>
15 office 151 <Name>Announcements</Name>
152 </ProjectReference>
6 office 153 <ProjectReference Include="..\Servers\Servers.csproj">
154 <Project>{ddab11f9-3308-4464-b864-4d75cba1acc8}</Project>
155 <Name>Servers</Name>
156 </ProjectReference>
22 office 157 <ProjectReference Include="..\WindowsToastNotifications\ToastNotifications\ToastNotifications.csproj">
158 <Project>{380d8d88-386c-4c50-9a54-800f79fdf7d2}</Project>
159 <Name>ToastNotifications</Name>
160 </ProjectReference>
6 office 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>