Skip to content

Commit

Permalink
Add basic site throwing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenbock committed Feb 3, 2017
1 parent 46c8006 commit 94bc505
Show file tree
Hide file tree
Showing 10 changed files with 810 additions and 0 deletions.
16 changes: 16 additions & 0 deletions AchmeErrorSite/AchmeClass.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace AchmeErrorSite
{
public class AchmeClass
{
public static void ThrowUp()
{
string foo = null;
foo.Split(',');
}
}
}
7 changes: 7 additions & 0 deletions AchmeErrorSite/AchmeErrorSite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,9 @@
<Content Include="config\BaseRestExtensions.config" />
<Content Include="config\applications.config" />
<Content Include="config\404handlers.config" />
<Content Include="Views\CompiledError.cshtml" />
<Content Include="Views\Home.cshtml" />
<Content Include="Views\RazorError.cshtml" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</None>
Expand Down Expand Up @@ -459,12 +462,16 @@
<Content Include="Web.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="AchmeClass.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\Models\" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
Expand Down
1 change: 1 addition & 0 deletions AchmeErrorSite/App_Data/Models/all.dll.path
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\vs\75441ed1\d5440aaf\App_Web_all.generated.cs.8f9494c4.z-ucklgj.dll
Loading

0 comments on commit 94bc505

Please sign in to comment.