Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Aug 8, 2015
1 parent ae9feb9 commit 462bd0c
Show file tree
Hide file tree
Showing 90 changed files with 19,677 additions and 0 deletions.
12 changes: 12 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Copyright (c) Josef Pihrt. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
these files except in compliance with the License. You may obtain a copy of the
License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
22 changes: 22 additions & 0 deletions LinqToRegex.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LinqToRegex", "src\LinqToRegex\LinqToRegex.csproj", "{A5C864F0-D0A3-4A3C-8854-CE4EE631901B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A5C864F0-D0A3-4A3C-8854-CE4EE631901B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5C864F0-D0A3-4A3C-8854-CE4EE631901B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5C864F0-D0A3-4A3C-8854-CE4EE631901B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5C864F0-D0A3-4A3C-8854-CE4EE631901B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
22 changes: 22 additions & 0 deletions Pihrtsoft.ruleset
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Pihrtsoft" Description="Code analysis rules for Pihrtsoft" ToolsVersion="14.0">
<IncludeAll Action="Warning" />
<Rules AnalyzerId="CSharpEssentials" RuleNamespace="CSharpEssentials">
<Rule Id="CSE0003" Action="None" />
</Rules>
<Rules AnalyzerId="CodeCracker.CSharp" RuleNamespace="CodeCracker.CSharp">
<Rule Id="CC0001" Action="None" />
<Rule Id="CC0006" Action="None" />
<Rule Id="CC0013" Action="None" />
<Rule Id="CC0014" Action="None" />
<Rule Id="CC0015" Action="None" />
<Rule Id="CC0030" Action="None" />
<Rule Id="CC0031" Action="None" />
<Rule Id="CC0045" Action="None" />
</Rules>
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed">
<Rule Id="CA1303" Action="None" />
<Rule Id="CA2000" Action="None" />
<Rule Id="CA2104" Action="None" />
</Rules>
</RuleSet>
Loading

0 comments on commit 462bd0c

Please sign in to comment.