Skip to content

Commit e8ed999

Browse files
committed
beep
1 parent cc66cb9 commit e8ed999

File tree

11 files changed

+539
-0
lines changed

11 files changed

+539
-0
lines changed

.gitignore

Lines changed: 217 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,217 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
.nuget
9+
packages/
10+
bin/
11+
build/
12+
dropboxrelease/
13+
tmp/
14+
*.tmp
15+
*.bak
16+
*.swp
17+
*~.nib
18+
local.properties
19+
.classpath
20+
.settings/
21+
.loadpath
22+
23+
# External tool builders
24+
.externalToolBuilders/
25+
26+
# Locally stored "Eclipse launch configurations"
27+
*.launch
28+
29+
# CDT-specific
30+
.cproject
31+
32+
# PDT-specific
33+
.buildpath
34+
35+
36+
#################
37+
## Visual Studio
38+
#################
39+
40+
## Ignore Visual Studio temporary files, build results, and
41+
## files generated by popular Visual Studio add-ons.
42+
43+
# User-specific files
44+
*.suo
45+
*.user
46+
*.sln.docstates
47+
48+
# Build results
49+
50+
[Dd]ebug/
51+
[Rr]elease/
52+
x64/
53+
[Bb]in/
54+
[Oo]bj/
55+
56+
# MSTest test Results
57+
[Tt]est[Rr]esult*/
58+
[Bb]uild[Ll]og.*
59+
60+
*_i.c
61+
*_p.c
62+
*.ilk
63+
*.meta
64+
*.obj
65+
*.pch
66+
*.pdb
67+
*.pgc
68+
*.pgd
69+
*.rsp
70+
*.sbr
71+
*.tlb
72+
*.tli
73+
*.tlh
74+
*.tmp
75+
*.tmp_proj
76+
*.log
77+
*.vspscc
78+
*.vssscc
79+
.builds
80+
*.pidb
81+
*.log
82+
*.scc
83+
84+
# Visual C++ cache files
85+
ipch/
86+
*.aps
87+
*.ncb
88+
*.opensdf
89+
*.sdf
90+
*.cachefile
91+
92+
# Visual Studio profiler
93+
*.psess
94+
*.vsp
95+
*.vspx
96+
97+
# Guidance Automation Toolkit
98+
*.gpState
99+
100+
# ReSharper is a .NET coding add-in
101+
_ReSharper*/
102+
*.[Rr]e[Ss]harper
103+
104+
# TeamCity is a build add-in
105+
_TeamCity*
106+
107+
# DotCover is a Code Coverage Tool
108+
*.dotCover
109+
110+
# NCrunch
111+
*.ncrunch*
112+
.*crunch*.local.xml
113+
114+
# Installshield output folder
115+
[Ee]xpress/
116+
117+
# DocProject is a documentation generator add-in
118+
DocProject/buildhelp/
119+
DocProject/Help/*.HxT
120+
DocProject/Help/*.HxC
121+
DocProject/Help/*.hhc
122+
DocProject/Help/*.hhk
123+
DocProject/Help/*.hhp
124+
DocProject/Help/Html2
125+
DocProject/Help/html
126+
127+
# Click-Once directory
128+
publish/
129+
130+
# Publish Web Output
131+
*.Publish.xml
132+
*.pubxml
133+
134+
# NuGet Packages Directory
135+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
136+
#packages/
137+
138+
# Windows Azure Build Output
139+
csx
140+
*.build.csdef
141+
142+
# Windows Store app package directory
143+
AppPackages/
144+
145+
# Others
146+
sql/
147+
*.Cache
148+
ClientBin/
149+
[Ss]tyle[Cc]op.*
150+
~$*
151+
*~
152+
*.dbmdl
153+
*.[Pp]ublish.xml
154+
*.pfx
155+
*.publishsettings
156+
157+
# RIA/Silverlight projects
158+
Generated_Code/
159+
160+
# Backup & report files from converting an old project file to a newer
161+
# Visual Studio version. Backup files are not needed, because we have git ;-)
162+
_UpgradeReport_Files/
163+
Backup*/
164+
UpgradeLog*.XML
165+
UpgradeLog*.htm
166+
167+
# SQL Server files
168+
App_Data/*.mdf
169+
App_Data/*.ldf
170+
171+
#############
172+
## Windows detritus
173+
#############
174+
175+
# Windows image file caches
176+
Thumbs.db
177+
ehthumbs.db
178+
179+
# Folder config file
180+
Desktop.ini
181+
182+
# Recycle Bin used on file shares
183+
$RECYCLE.BIN/
184+
185+
# Mac crap
186+
.DS_Store
187+
188+
189+
#############
190+
## Python
191+
#############
192+
193+
*.py[co]
194+
195+
# Packages
196+
*.egg
197+
*.egg-info
198+
dist/
199+
eggs/
200+
parts/
201+
var/
202+
sdist/
203+
develop-eggs/
204+
.installed.cfg
205+
206+
# Installer logs
207+
pip-log.txt
208+
209+
# Unit test / coverage reports
210+
.coverage
211+
.tox
212+
213+
#Translations
214+
*.mo
215+
216+
#Mr Developer
217+
.mr.developer.cfg

FailAnalyzer.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.4
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FailAnalyzer", "FailAnalyzer\FailAnalyzer.csproj", "{2126E5E4-9770-4A69-A5BF-610F0C44053D}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{2126E5E4-9770-4A69-A5BF-610F0C44053D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{2126E5E4-9770-4A69-A5BF-610F0C44053D}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{2126E5E4-9770-4A69-A5BF-610F0C44053D}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{2126E5E4-9770-4A69-A5BF-610F0C44053D}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

FailAnalyzer/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
5+
</startup>
6+
</configuration>

FailAnalyzer/FailAnalyzer.csproj

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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>{2126E5E4-9770-4A69-A5BF-610F0C44053D}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>FailAnalyzer</RootNamespace>
10+
<AssemblyName>FailAnalyzer</AssemblyName>
11+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PlatformTarget>AnyCPU</PlatformTarget>
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<DebugType>pdbonly</DebugType>
28+
<Optimize>true</Optimize>
29+
<OutputPath>bin\Release\</OutputPath>
30+
<DefineConstants>TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
</PropertyGroup>
34+
<PropertyGroup>
35+
<ApplicationIcon>favicon.ico</ApplicationIcon>
36+
</PropertyGroup>
37+
<ItemGroup>
38+
<Reference Include="System" />
39+
<Reference Include="System.Core" />
40+
<Reference Include="System.Xml.Linq" />
41+
<Reference Include="System.Data.DataSetExtensions" />
42+
<Reference Include="Microsoft.CSharp" />
43+
<Reference Include="System.Data" />
44+
<Reference Include="System.Net.Http" />
45+
<Reference Include="System.Xml" />
46+
</ItemGroup>
47+
<ItemGroup>
48+
<Compile Include="Player.cs" />
49+
<Compile Include="Program.cs" />
50+
<Compile Include="Properties\AssemblyInfo.cs" />
51+
<Compile Include="SearchTerm.cs" />
52+
</ItemGroup>
53+
<ItemGroup>
54+
<None Include="App.config" />
55+
<None Include="icon_cache">
56+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
57+
</None>
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Content Include="favicon.ico" />
61+
<Content Include="raid_heroes.exe">
62+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
63+
</Content>
64+
</ItemGroup>
65+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
66+
</Project>

FailAnalyzer/Player.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System.Collections.Generic;
2+
3+
namespace FailAnalyzer
4+
{
5+
public class Player
6+
{
7+
public Player(string name)
8+
{
9+
Name = name;
10+
Fails = new Dictionary<string, int>();
11+
}
12+
13+
public string Name { get; }
14+
15+
public Dictionary<string, int> Fails { get; set; }
16+
}
17+
}

0 commit comments

Comments
 (0)