Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit 44eddb1

Browse files
committed
Fixed project.json casing
1 parent 927ebb7 commit 44eddb1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

samples/StaticFileSample/StaticFileSample.kproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="__ToolsVersion__" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
@@ -21,10 +21,10 @@
2121
<DevelopmentServerPort>47028</DevelopmentServerPort>
2222
</PropertyGroup>
2323
<ItemGroup>
24-
<Content Include="Project.json" />
24+
<Content Include="project.json" />
2525
</ItemGroup>
2626
<ItemGroup>
2727
<Compile Include="Startup.cs" />
2828
</ItemGroup>
2929
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
30-
</Project>
30+
</Project>

src/Microsoft.AspNet.StaticFiles/Microsoft.AspNet.StaticFiles.kproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="__ToolsVersion__" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
@@ -18,7 +18,7 @@
1818
</PropertyGroup>
1919
<ItemGroup>
2020
<Content Include="CustomDictionary.xml" />
21-
<Content Include="Project.json" />
21+
<Content Include="project.json" />
2222
<Content Include="Resources.resx" />
2323
</ItemGroup>
2424
<ItemGroup>
@@ -51,4 +51,4 @@
5151
<Compile Include="StreamCopyOperation.cs" />
5252
</ItemGroup>
5353
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
54-
</Project>
54+
</Project>

0 commit comments

Comments
 (0)